Skip to content

Commit

Permalink
Improvement: Fix tests action
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmhtr committed Jul 17, 2023
1 parent ef6e4f2 commit 241dd0f
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@ on: push

jobs:
test:

runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 13.x, 14.x]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
node-version: 18
cache: 'yarn'

- name: Install dependencies
run: yarn install --frozen-lockfile

- run: yarn test

0 comments on commit 241dd0f

Please sign in to comment.