Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Convert to typescript #1

Convert to typescript

Convert to typescript #1

Workflow file for this run

name: Test NPM package
on:
pull_request:
jobs:
release:
name: Test NPM package
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20.x"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test