2022-11-09 00:03:15 +01:00
|
|
|
name: CI
|
2022-11-06 13:04:30 +01:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-12-18 21:26:58 +01:00
|
|
|
runs-on: ubuntu-20.04
|
2022-11-06 13:04:30 +01:00
|
|
|
|
|
|
|
strategy:
|
2022-11-08 19:41:10 +01:00
|
|
|
fail-fast: false
|
2022-11-06 13:04:30 +01:00
|
|
|
matrix:
|
2022-11-08 22:13:36 +01:00
|
|
|
include:
|
2022-11-23 14:43:12 +01:00
|
|
|
- { node-version: 14.x, lint: true, tests: true }
|
|
|
|
- { node-version: 15.x, lint: false, tests: true }
|
|
|
|
- { node-version: 16.x, lint: true, tests: true }
|
|
|
|
- { node-version: 17.x, lint: true, tests: true }
|
|
|
|
- { node-version: 18.x, lint: true, tests: true }
|
|
|
|
- { node-version: 19.x, lint: true, tests: true }
|
2022-11-14 01:39:11 +01:00
|
|
|
|
2022-11-23 14:43:12 +01:00
|
|
|
name: nodejs ${{ matrix.node-version }} (${{ matrix.lint && 'lint → ' || '' }}${{ matrix.tests && 'test → ' || '' }}build)
|
2022-11-06 13:04:30 +01:00
|
|
|
|
|
|
|
steps:
|
2022-12-18 21:17:18 +01:00
|
|
|
- uses: actions/checkout@v3.2.0
|
2022-11-06 13:04:30 +01:00
|
|
|
|
2022-11-08 00:20:19 +01:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2023-01-06 10:53:34 +01:00
|
|
|
uses: actions/setup-node@v3.6.0
|
2022-11-06 13:04:30 +01:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
|
2022-11-14 02:43:27 +01:00
|
|
|
- name: Cache node modules
|
|
|
|
id: cache-npm
|
2022-12-31 19:18:44 +01:00
|
|
|
uses: actions/cache@v3.2.2
|
2022-11-14 02:43:27 +01:00
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules
|
|
|
|
with:
|
|
|
|
path: node_modules
|
2022-11-16 22:19:08 +01:00
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json', '**/package.json') }}
|
2022-11-14 02:43:27 +01:00
|
|
|
|
|
|
|
- name: Cache eslint
|
|
|
|
id: cache-eslint
|
2022-12-31 19:18:44 +01:00
|
|
|
uses: actions/cache@v3.2.2
|
2022-11-14 02:43:27 +01:00
|
|
|
env:
|
|
|
|
cache-name: cache-eslint
|
|
|
|
with:
|
|
|
|
path: .eslintcache
|
2022-11-16 22:19:08 +01:00
|
|
|
key: ${{ env.cache-name }}-${{ hashFiles('**/package-lock.json', '**/package.json') }}
|
2022-11-14 02:43:27 +01:00
|
|
|
|
|
|
|
- name: Cache TypeScript
|
|
|
|
id: cache-typescript
|
2022-12-31 19:18:44 +01:00
|
|
|
uses: actions/cache@v3.2.2
|
2022-11-14 02:43:27 +01:00
|
|
|
env:
|
|
|
|
cache-name: cache-typescript
|
|
|
|
with:
|
|
|
|
path: .tsbuildinfo
|
2022-11-16 22:19:08 +01:00
|
|
|
key: ${{ env.cache-name }}-${{ hashFiles('**/package-lock.json', '**/package.json') }}
|
2022-11-14 02:43:27 +01:00
|
|
|
|
|
|
|
- name: Cache prettier
|
|
|
|
id: cache-prettier
|
2022-12-31 19:18:44 +01:00
|
|
|
uses: actions/cache@v3.2.2
|
2022-11-14 02:43:27 +01:00
|
|
|
env:
|
|
|
|
cache-name: cache-prettier
|
|
|
|
with:
|
|
|
|
path: node_modules/.cache/prettier/.prettier-cache
|
2022-11-16 22:19:08 +01:00
|
|
|
key: ${{ env.cache-name }}-${{ hashFiles('**/package-lock.json', '**/package.json') }}
|
2022-11-14 02:43:27 +01:00
|
|
|
|
2022-11-06 13:04:30 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
2022-11-14 02:43:27 +01:00
|
|
|
if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
|
2022-11-06 13:04:30 +01:00
|
|
|
|
|
|
|
- name: Lint the project
|
|
|
|
run: npm run lint
|
2022-11-14 01:39:11 +01:00
|
|
|
if: ${{ matrix.lint }}
|
2022-11-08 22:15:44 +01:00
|
|
|
|
2022-11-23 14:30:23 +01:00
|
|
|
- name: Run tests
|
|
|
|
run: npm test
|
|
|
|
if: ${{ matrix.tests }}
|
|
|
|
|
2022-11-23 14:43:12 +01:00
|
|
|
- name: Upload code coverage
|
2022-12-18 21:17:18 +01:00
|
|
|
uses: actions/upload-artifact@v3.1.1
|
2022-11-23 14:43:12 +01:00
|
|
|
with:
|
|
|
|
name: code-coverage
|
|
|
|
path: coverage/lcov.info
|
|
|
|
if: ${{ matrix.node-version == '18.x' }}
|
2022-11-23 11:42:44 +01:00
|
|
|
|
2022-11-06 13:04:30 +01:00
|
|
|
- name: Build the project
|
|
|
|
run: npm run build
|