Skip to content

Merge pull request #3 from skogsletten/edit-to-thing #28

Merge pull request #3 from skogsletten/edit-to-thing

Merge pull request #3 from skogsletten/edit-to-thing #28

Workflow file for this run

name: Unit tests
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test