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]
|
|
|
|
fail-on-lint: [true]
|
|
|
|
include:
|
|
|
|
- { node-version: 13.x, fail-on-lint: false }
|
|
|
|
- { node-version: 15.x, fail-on-lint: 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:13:36 +01:00
|
|
|
continue-on-error: ${{ ! matrix.fail-on-lint }}
|
2022-11-06 13:04:30 +01:00
|
|
|
|
|
|
|
- name: Build the project
|
|
|
|
run: npm run build
|
|
|
|
env:
|
|
|
|
CI: true
|