Skip to content

chore: update dependency lint-staged to ^15.2.5 #781

chore: update dependency lint-staged to ^15.2.5

chore: update dependency lint-staged to ^15.2.5 #781

Workflow file for this run

---
name: continuous
on:
push:
branches:
- trunk
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
env:
CI: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run check
- run: npm run test -- --verbose
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: coverage/coverage-final.json
token: ${{ secrets.CODECOV_TOKEN }}
strategy:
fail-fast: false
matrix:
node:
- 18
- 20