Skip to content

Add automated testing infrastructure #2

Add automated testing infrastructure

Add automated testing infrastructure #2

name: Verify/Build/Deploy
on:
push:
branches: [master]
pull_request:
jobs:
job:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Install
run: npm install
- name: test
run: npm run test