Skip to content

Commit

Permalink
first pass at running tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bdami-gavant committed Mar 19, 2024
1 parent 9d04eac commit ef07a03
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Run Unit Tests

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

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
# Manual Checkout
- uses: actions/checkout@v3

# Set up Node
- uses: actions/setup-node@v3
with:
node-version: '18.x'

#- Run Tests
- name: Execute Unit Tests
- run: yarn install
- run: yarn test

0 comments on commit ef07a03

Please sign in to comment.