Skip to content

chore(frontend)(deps-dev): bump @vitejs/plugin-react from 6.0.1 to 6.0.2 in /ui in the vite group #322

chore(frontend)(deps-dev): bump @vitejs/plugin-react from 6.0.1 to 6.0.2 in /ui in the vite group

chore(frontend)(deps-dev): bump @vitejs/plugin-react from 6.0.1 to 6.0.2 in /ui in the vite group #322

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
build-and-test:
name: build · vet · test
runs-on: ubuntu-latest
env:
CGO_ENABLED: "1"
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- name: go build
run: go build ./...
- name: go vet
run: go vet ./...
- name: go test (race)
run: go test -race -timeout 180s ./...
- name: loadsim build tag compiles
run: go build -tags loadtest ./test/loadsim/...