Skip to content

Commit

Permalink
Run the unit tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mcintyre94 committed Jun 4, 2024
1 parent 0495b42 commit 184daa1
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Pull requests

on:
pull_request:

jobs:
unit-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./core

strategy:
matrix:
node:
- "current"
- "lts/*"

name: Run unit tests on Node ${{ matrix.node }}

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Dependencies
uses: ./.github/workflows/actions/install-dependencies
with:
version: ${{ matrix.node }}

- name: Run unit tests
run: npm test

0 comments on commit 184daa1

Please sign in to comment.