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