Skip to content

build(deps): bump the eslint group in /web with 2 updates (#1980) #548

build(deps): bump the eslint group in /web with 2 updates (#1980)

build(deps): bump the eslint group in /web with 2 updates (#1980) #548

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # 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) }}