Skip to content

Add ci/cd actions, issue templates #85

Add ci/cd actions, issue templates

Add ci/cd actions, issue templates #85

Workflow file for this run

name: "CI"
on:
push:
branches:
- 'main'
workflow_dispatch:
workflow_call:
pull_request:
branches:
- '*'
jobs:
build:
name: "Unit Tests on Ubuntu"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: npm ci
- run: npx eslint . --ext .js,.ts
- run: npm test