Skip to content

Update README.md

Update README.md #344

Workflow file for this run

name: build
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [18, 20, 22]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: npm install, build, test and coverage
env:
SKIP_PREFLIGHT_CHECK: true
CODECOV_TOKEN: ${{ secrets.codecov_token }}
run: |
npm install
npm run build --if-present
npm run test
npm run coverage