Skip to content

chore(deps): bump glob from 10.4.5 to 10.5.0 in /web #897

chore(deps): bump glob from 10.4.5 to 10.5.0 in /web

chore(deps): bump glob from 10.4.5 to 10.5.0 in /web #897

Workflow file for this run

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 ./...