Skip to content

Commit

Permalink
Merge pull request #238 from anza-xyz/ci-tests
Browse files Browse the repository at this point in the history
Run the unit tests in CI
  • Loading branch information
mcintyre94 committed Jun 4, 2024
2 parents 0495b42 + 3112a1f commit a31945d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Install Dependencies
run: npm install

- name: Run unit tests
run: npm test

0 comments on commit a31945d

Please sign in to comment.