Skip to content

build(deps): bump library/golang from 1.25 to 1.26 #717

build(deps): bump library/golang from 1.25 to 1.26

build(deps): bump library/golang from 1.25 to 1.26 #717

Workflow file for this run

name: Test (Web)
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
target:
- prettier-check
- lint-check
- lit-analyse
- tsc
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v5
with:
node-version-file: web/package.json
cache: "npm"
cache-dependency-path: web/package-lock.json
- run: make web-install gen-client-ts
- run: npm run ${{ matrix.target }}
working-directory: web/
web-test-mark:
if: always()
needs:
- lint
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}