Skip to content

feat: rewrite in TypeScript #11

feat: rewrite in TypeScript

feat: rewrite in TypeScript #11

Workflow file for this run

name: Tests
on: ["push", "pull_request"]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
name: Node - ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm test