Skip to content

release: bump version to 0.4.0 and add GitHub Actions workflow for te… #1

release: bump version to 0.4.0 and add GitHub Actions workflow for te…

release: bump version to 0.4.0 and add GitHub Actions workflow for te… #1

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Tests
timeout-minutes: 60
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: './package-lock.json'
- name: Install dependencies
run: npm i
- name: Test
run: npm run test