Skip to content

Update .gitignore

Update .gitignore #554

Workflow file for this run

name: test-package
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['18', '20', '22']
steps:
- uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run tests
run: |
npm test
- name: Upload coverage report to Codecov
run: |
npm run coverage
bash <(curl -s https://codecov.io/bash)