Skip to content

Commit

Permalink
build: update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpestov committed May 16, 2024
1 parent a26ded1 commit 5b03e54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Run tests
run: |
npm ci
npm run serve:prod &
npm run serve:mock-api &
npm run test:e2e
# - name: Save test video folder
# if: always()
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@
"lint:vue": "eslint --ext .vue src",
"release": "npm run build && npm publish",
"serve:dev": "vite",
"serve:prod": "npm run build & ncp dist/ examples/dist/ & http-server examples -p 2222 -c-1 --silent --cors",
"serve:prod": "npm run build && ncp dist/ examples/dist/ & http-server examples -p 2222 -c-1 --silent --cors",
"serve:mock-api": "http-server tests/mocks -p 8181 -c-1 --silent --cors",
"test:e2e": "start-server-and-test serve:mock-api 8181 cypress:headless",
"test:e2e": "start-server-and-test serve:prod 8181 cypress:headless",
"write-changelog": "standard-version"
},
"files": [
Expand Down

0 comments on commit 5b03e54

Please sign in to comment.