Skip to content

Merge pull request #19 from tslocke/patch-1 #7

Merge pull request #19 from tslocke/patch-1

Merge pull request #19 from tslocke/patch-1 #7

Workflow file for this run

name: Build and test
on:
workflow_dispatch:
push:
pull_request:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
registry-url: 'https://registry.npmjs.org/'
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test