Skip to content

fix(web): disable html caching for spa shell #12

fix(web): disable html caching for spa shell

fix(web): disable html caching for spa shell #12

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.26.1"
- uses: actions/setup-node@v5
with:
node-version: "24"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- run: npm ci
working-directory: frontend
- run: npm run build
working-directory: frontend
- run: go test ./...
- run: go build ./...