From a61eeef6d97f5674ed61778677f9d0cf3dae2082 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Sat, 25 May 2024 12:07:00 -0700 Subject: [PATCH] ci: add GitHub Actions workflow for testing --- .github/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..7fba6f70 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,9 @@ +name: Test +on: [pull_request, push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: npm ci + - run: npm test