Skip to content

Remove node 14 from ci matrix #13

Remove node 14 from ci matrix

Remove node 14 from ci matrix #13

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Lint
run: npx eslint src
- name: Generate Documentation
if: matrix.node-version == 18
run: npm build docs
- name: Archive Documentation
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: docs