Skip to content

11.1.1

11.1.1 #427

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
name: Node ${{ matrix.node-version }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install and test
run: |
node --version
npm ci
npm test
- name: Upload code coverage
uses: codecov/codecov-action@v4
with:
file: ./coverage/coverage-final.json