Skip to content

NEW: Support Maps (#76) #29

NEW: Support Maps (#76)

NEW: Support Maps (#76) #29

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Node for npm
uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test