Skip to content

fix(api): scope task assignments query by task #205

fix(api): scope task assignments query by task

fix(api): scope task assignments query by task #205

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
ci:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Check Go formatting
run: |
unformatted="$(gofmt -l .)"
if [ -n "$unformatted" ]; then
echo "$unformatted"
exit 1
fi
- name: Run Go tests
run: go test ./...
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
cache-dependency-path: web/package-lock.json
- name: Install frontend dependencies
working-directory: web
run: npm ci
- name: Build frontend
working-directory: web
run: npm run build