Skip to content

Commit

Permalink
fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzuelu committed Mar 14, 2024
1 parent a4f5625 commit d30f79f
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ jobs:
with:
node-version: 18

- run: npm ci
- name: Install yarn
run: npm install -g yarn
shell: sh

- run: npm run lint
- run: yarn install
shell: sh

- run: yarn lint
shell: sh

test:
Expand All @@ -27,8 +31,12 @@ jobs:
with:
node-version: 18

- run: npm ci
- name: Install yarn
run: npm install -g yarn
shell: sh

- run: yarn install
shell: sh

- run: npm run test:unit
- run: yarn test:unit
shell: sh

0 comments on commit d30f79f

Please sign in to comment.