Skip to content

feat!: refine package #8

feat!: refine package

feat!: refine package #8

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Test on ${{ matrix.os }} and Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16, 18, 20]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
run_install: |
args: [--ignore-scripts]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Build binary
run: pnpm binary:build
- name: BenchMark
run: pnpm test:benchmark
- name: Coverage
run: pnpm test:coverage
- name: Upload coverage
if: github.ref == 'refs/heads/master'
uses: codecov/codecov-action@v3