Update dependency @types/node to v20.17.8 #2103
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
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: 20 | |
- name: Set up buf | |
uses: bufbuild/buf-setup-action@v1.42.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Backend | |
run: | | |
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@v4 | |
with: | |
files: coverage.cov | |
flags: unittests | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Build UI | |
run: cd ui && npm ci |