chore(deps): bump next from 15.5.2 to 15.5.7 in /web #906
Workflow file for this run
This file contains hidden or 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: Auto CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Auto triggered CI job | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - | |
| name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| cache-dependency-path: 'web/package-lock.json' | |
| - | |
| name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.23' | |
| cache: true | |
| - | |
| name: Build the frontend project | |
| run: | | |
| cd web | |
| npm ci | |
| npm run build | |
| cd .. | |
| go generate ./... | |
| - | |
| name: golangci-lint | |
| uses: golangci/golangci-lint-action@v6 | |
| with: | |
| version: latest | |
| - | |
| name: Run unit tests | |
| run: go test -race -coverprofile=coverage.out -covermode=atomic ./... |