2022-11-06 13:04:30 +01:00
|
|
|
name: Build and Lint
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
2022-11-08 19:41:10 +01:00
|
|
|
fail-fast: false
|
2022-11-06 13:04:30 +01:00
|
|
|
matrix:
|
|
|
|
# the Node.js versions to build on
|
2022-11-08 22:13:36 +01:00
|
|
|
node-version: [14.x, 16.x, 17.x, 18.x]
|
2022-11-08 22:15:44 +01:00
|
|
|
allow-lint-failure: [false]
|
|
|
|
allow-test-failure: [false]
|
2022-11-08 22:13:36 +01:00
|
|
|
include:
|
2022-11-08 22:15:44 +01:00
|
|
|
- { node-version: 10.x, allow-lint-failure: true, allow-test-failure: true }
|
|
|
|
- { node-version: 11.x, allow-lint-failure: true, allow-test-failure: true }
|
|
|
|
- { node-version: 12.x, allow-lint-failure: true, allow-test-failure: true }
|
|
|
|
- { node-version: 13.x, allow-lint-failure: true, allow-test-failure: true }
|
|
|
|
- { node-version: 15.x, allow-lint-failure: true, allow-test-failure: false }
|
2022-11-06 13:04:30 +01:00
|
|
|
|
|
|
|
steps:
|
2022-11-08 00:20:19 +01:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-06 13:04:30 +01:00
|
|
|
|
2022-11-08 00:20:19 +01:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v3
|
2022-11-06 13:04:30 +01:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- name: Lint the project
|
|
|
|
run: npm run lint
|
2022-11-08 22:15:44 +01:00
|
|
|
continue-on-error: ${{ matrix.allow-lint-failure }}
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: npm test
|
|
|
|
continue-on-error: ${{ matrix.allow-test-failure }}
|
2022-11-06 13:04:30 +01:00
|
|
|
|
|
|
|
- name: Build the project
|
|
|
|
run: npm run build
|