Files
MeganJohns/.gitea/workflows/client.yml
Lucas Jensen 8b6378fe75
Some checks failed
Client Build / build (21.x) (pull_request) Failing after 17s
Server Build / build (pull_request) Successful in 45s
further build step tweaks
2026-01-01 20:51:22 -08: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