Skip to content

chore: bump actions/checkout from 3 to 4 #442

chore: bump actions/checkout from 3 to 4

chore: bump actions/checkout from 3 to 4 #442

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@v4
# 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