Skip to content

Release prep: :latest tag, GitHub Releases, CI on main only, v1.0.0 (… #67

Release prep: :latest tag, GitHub Releases, CI on main only, v1.0.0 (…

Release prep: :latest tag, GitHub Releases, CI on main only, v1.0.0 (… #67

Workflow file for this run

name: CI
on:
push:
branches: [main]
jobs:
server:
name: Server tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: server/package-lock.json
- run: npm ci
- run: npm test
client:
name: Client build
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: client/package-lock.json
- run: npm ci
- run: npm run build