From 5779480875ca54f7c0b72ba4cd8ae4bb031d0a9d Mon Sep 17 00:00:00 2001 From: Alec Charbonneau Date: Tue, 21 Nov 2023 23:18:32 -0600 Subject: [PATCH] add back --- .github/workflows/runTests.yml | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/.github/workflows/runTests.yml b/.github/workflows/runTests.yml index 07cfe82..7cea01d 100644 --- a/.github/workflows/runTests.yml +++ b/.github/workflows/runTests.yml @@ -1,15 +1,14 @@ -# ALEC TODO - uncomment -# name: Run Tests -# on: [pull_request] -# jobs: -# test-ci: -# name: test -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v2 -# - uses: actions/setup-node@v2 -# with: -# node-version: 18 -# - run: yarn install -# - run: yarn build -# - run: yarn test:ci +name: Run Tests +on: [pull_request] +jobs: + test-ci: + name: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 18 + - run: yarn install + - run: yarn build + - run: yarn test:ci