Skip to content

Merge pull request #86 from jaredwray/removing-support-for-node-10,-1… #42

Merge pull request #86 from jaredwray/removing-support-for-node-10,-1…

Merge pull request #86 from jaredwray/removing-support-for-node-10,-1… #42

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['16', '18', '20']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Testing
run: npm run verify --silent
- name: Run Codecov
run: npm run test:ci:cache
- name: Run Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}