Skip to content

Commit

Permalink
Merge pull request #7 from skedwards88/require-tests
Browse files Browse the repository at this point in the history
Add workflow to run tests
  • Loading branch information
skedwards88 authored May 6, 2024
2 parents 775080e + 93b3796 commit cbca94a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/unitTests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Unit tests

on:
pull_request:

permissions:
contents: read

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install requirements
run: npm ci

- name: Test
run: npm t

0 comments on commit cbca94a

Please sign in to comment.