Skip to content

deps(renovate): update dependency lint-staged to v15 #2610

deps(renovate): update dependency lint-staged to v15

deps(renovate): update dependency lint-staged to v15 #2610

Workflow file for this run

on: [push, pull_request]
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run lint
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test:cjs
- run: npm run build:esm -- --sourceMap
- run: npx c8 npm run test:esm
- run: npx c8 report --reporter=text-lcov > coverage.lcov
- uses: codecov/codecov-action@v3