Skip to content

Update dependency @types/node to v22.10.7 #2607

Update dependency @types/node to v22.10.7

Update dependency @types/node to v22.10.7 #2607

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
merge_group:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Set up node.js
uses: actions/setup-node@v4
with:
node-version: 23
- name: Set up buf
uses: bufbuild/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Build Backend
run: |
go install github.com/sqlc-dev/sqlc/cmd/sqlc@latest
go generate ./...
go build -v ./...
- name: Test Backend
run: |
go install github.com/mfridman/tparse@latest
go test -v -coverprofile=coverage.cov -coverpkg ./... -covermode=atomic ./... -json | tee output.json | tparse -follow || true
tparse -format markdown -file output.json > $GITHUB_STEP_SUMMARY
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
files: coverage.cov
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build UI
run: |
npm ci
npm run build
working-directory: ./ui