From 9486e4a98003de3afb187dd309dfa00e56217559 Mon Sep 17 00:00:00 2001 From: Eric Theise Date: Tue, 4 Jun 2024 19:18:26 -0700 Subject: [PATCH] Test action. --- .github/workflows/ohm.tests.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ohm.tests.yml diff --git a/.github/workflows/ohm.tests.yml b/.github/workflows/ohm.tests.yml new file mode 100644 index 00000000..d89c3687 --- /dev/null +++ b/.github/workflows/ohm.tests.yml @@ -0,0 +1,20 @@ +name: Tests + +on: + push: + branches: + - "**" + +jobs: + test: + strategy: + matrix: + node-version: ["18.x", "20.x"] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + - run: yarn install + - run: yarn test