Skip to content

Commit

Permalink
Fix tests in Github CI Environment
Browse files Browse the repository at this point in the history
This changes the test commands to the vite and Vue3 commands.
  • Loading branch information
ipf committed Apr 13, 2023
1 parent f0ba1ee commit 4082426
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
npm ci
- name: Cypress tests
run: npm test
run: npm run test:unit && npm run test:e2e

build-windows:
runs-on: windows-latest
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
run: |
npm ci
- name: Cypress tests
run: npm test
run: npm run test:unit && npm run test:e2e

build-mac:
runs-on: macos-latest
Expand Down Expand Up @@ -116,4 +116,4 @@ jobs:
run: |
npm ci
- name: Cypress tests
run: npm test
run: npm run test:unit && npm run test:e2e

0 comments on commit 4082426

Please sign in to comment.