Skip to content

Commit

Permalink
Update required dependencies and automatic tests
Browse files Browse the repository at this point in the history
This updates required dependencies and adds an automatic Github Action Test.
  • Loading branch information
jpogran committed Feb 1, 2022
1 parent 71512e5 commit 7926e52
Show file tree
Hide file tree
Showing 3 changed files with 145 additions and 210 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: npm install
run: npm ci
- name: test
run: npm test
Loading

0 comments on commit 7926e52

Please sign in to comment.