Skip to content

Commit

Permalink
Include Github Action to run tests on pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjarling committed Feb 23, 2024
1 parent 41ec812 commit cea4b25
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run Unit Tests

on:
push:
branches:
- "**" # This will run the action on push to any branch

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]

- name: Get files
uses: actions/checkout@v3

- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: "lts/*"

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm run test:ci

0 comments on commit cea4b25

Please sign in to comment.