Skip to content

chore: bump version to 0.6.0 #7

chore: bump version to 0.6.0

chore: bump version to 0.6.0 #7

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test
- name: Run coverage
if: matrix.node-version == 20
run: npm run test:coverage
continue-on-error: true
- name: Upload coverage report
if: matrix.node-version == 20
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/
if-no-files-found: ignore
continue-on-error: true