Skip to content

ci: run build/lint/test on nodejs v18, v20; ubuntu-latest (#147) #104

ci: run build/lint/test on nodejs v18, v20; ubuntu-latest (#147)

ci: run build/lint/test on nodejs v18, v20; ubuntu-latest (#147) #104

name: Build, Lint, and Test
on:
push:
branches: [main]
pull_request:
jobs:
build-lint-test:
name: Build, Lint, and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile --ignore-scripts
- run: yarn build
- run: yarn lint
- run: yarn test
all-jobs-pass:
name: All jobs pass
runs-on: ubuntu-latest
needs:
- build-lint-test
steps:
- uses: actions/checkout@v2
- run: echo "Great success!"