Skip to content

Add dual release support #353

Add dual release support

Add dual release support #353

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- 'ubuntu-latest'
# - 'macos-latest'
# - 'windows-latest'
node_version:
- '18'
- '16'
- '14'
- '12'
name: Node.js ${{ matrix.node_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
# https://github.com/bahmutov/npm-install/issues/103#issuecomment-931226602
- name: Update NPM
run: npm install --global npm@8
- name: Install Dependencies
run: npm ci
- name: Lint
if: matrix.node_version == '18'
run: npm run lint
- name: Run Tests
run: npm run test-coverage