Files
MeganJohns/.gitea/workflows/client.yml
Lucas Jensen fc7c6523f6 bump python version for CI build (#1)
Co-authored-by: Lucas Jensen <lucas@lucasjensen.me>
Reviewed-on: #1
2026-01-02 05:24:23 +00:00

34 lines
605 B
YAML

name: Client Build
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Lint
working-directory: client
run: |
npm install
npm run prettier:check
- name: Build
working-directory: client
run: |
npm install
npm run build