Skip to content

Commit

Permalink
Fix GitHub Actions Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanzweifel committed Feb 20, 2024
1 parent 5786288 commit 9b9525d
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,24 @@ name: tests
on: push

jobs:
tests:
runs-on: ubuntu-latest
tests:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 19.x]
strategy:
matrix:
node-version: [18.x, 20.x]

name: Node ${{ matrix.node-version }}
name: Node ${{ matrix.node-version }}

steps:
- uses: actions/checkout@v4
steps:
- uses: actions/checkout@v4

- uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}

- name: Install testing dependencies
run: yarn install

- name: Run Tests
run: yarn test
- name: Install testing dependencies
run: npm install

- name: Run Tests
run: npm test

0 comments on commit 9b9525d

Please sign in to comment.