From aabd18fdd75a8369316db88027efcf72464f604b Mon Sep 17 00:00:00 2001 From: superbuggy Date: Fri, 6 Sep 2024 15:30:25 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Define=20testing=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Defines a Github Action to run the Jest test suite --- .github/workflows/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0364989 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: Run Tests +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install modules + run: yarn + - name: Run tests + run: yarn test \ No newline at end of file