Skip to content

Update lint-staged: 13.2.1 → 13.2.2 (patch) #420

Update lint-staged: 13.2.1 → 13.2.2 (patch)

Update lint-staged: 13.2.1 → 13.2.2 (patch) #420

Workflow file for this run

name: Lint and test
on: [push, pull_request]
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
nodejs: [14, 16, 18]
steps:
- uses: actions/checkout@v3
# https://github.com/actions/setup-node
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
- run: yarn install
- run: yarn add -D esbuild
- run: yarn test
- run: yarn lint
- run: yarn build-all