Skip to content

chore(deps): update actions/checkout action to v4 #1097

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #1097

Workflow file for this run

name: "Lint & test"
on: push
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 14, 16 ]
name: Lint on Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node }}
check-latest: true
- run: npm ci --quiet
- run: npm run lint