Skip to content

Bump axios from 1.13.5 to 1.15.0 in /test/webapp/site #1185

Bump axios from 1.13.5 to 1.15.0 in /test/webapp/site

Bump axios from 1.13.5 to 1.15.0 in /test/webapp/site #1185

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Unit tests
env:
GOFLAGS: "-buildvcs=false"
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
container: golang:latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Lint
run: |
staticcheck ./...
go vet ./...
- name: Run unit tests
run: go test ./...