Skip to content

3.0.1

3.0.1 #274

Workflow file for this run

name: Node CI
on: [push]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node: ${{ matrix.node }}
- name: Install
run: npm install
- name: Test
run: npm test
- name: Build
run: npm run build
env:
CI: true
- name: Codecov
if: matrix.os == 'ubuntu-latest'
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}