Skip to content

bump version

bump version #18

Workflow file for this run

name: Test
on: push
jobs:
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-node@v3
with:
node-version: latest
- uses: actions/setup-python@v3
with:
python-version: "3.12"
- uses: actions/checkout@v3
- name: Cache .pnpm-store
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install Node deps
run: |
npm i -g pnpm node-gyp
pnpm install
env:
NO_PREBUILD: true
- run: node-gyp rebuild
- run: pnpm run test:coverage
- uses: codecov/codecov-action@v3