Skip to content

Remove EOL Node versions from workflow #121

Remove EOL Node versions from workflow

Remove EOL Node versions from workflow #121

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
env:
NODE_ENV: development
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Test
run: |
npm install
FORCE_COLOR= npx c8 --reporter=lcov npm test && npx codecov