Skip to content

Update CI job to run with Node v20 #34

Update CI job to run with Node v20

Update CI job to run with Node v20 #34

Workflow file for this run

name: ci
on: push
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v2
- name: Using Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Tests
run: npm test
- name: Coverage
run: npx codecov --token="${{ secrets.CODECOV_TOKEN }}"