From 60abbc3b5961b7e9bcceacea91572324b1298e59 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Fri, 29 Mar 2024 18:10:40 -0400 Subject: [PATCH] Add tests workflow --- .github/workflows/test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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 0000000..4e2629b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,23 @@ + +name: Tests + +on: + push: + branches: + - main + pull_request: {} + +concurrency: + group: tests-${{ github.head_ref || github.ref }} + cancel-in-progress: true + +jobs: + test: + name: "Test: signal-polyfill" + runs-on: ubuntu-latest + timeout-minutes: 4 + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + - run: pnpm test