Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update workflow file to upload html report
  • Loading branch information
VadimNastoyashchy committed Jun 3, 2025
commit c34ce76b8c07cbeb07a8c4b0340e0d5dc3337370
8 changes: 8 additions & 0 deletions .github/workflows/pr_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,11 @@ jobs:
run: npm run prettier
- name: Unit test
run: npm test

- name: Upload E2E Test Report Artifact
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: scripterio-report
path: scripterio-report/
retention-days: 30
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"types": "./src/index.d.ts",
"scripts": {
"test": "src/runner.mjs --folder=__tests__",
"test": "src/runner.mjs --folder=__tests__ --reporter=html",
"lint": "eslint \"**/*.{js,mjs}\" --ignore-pattern node_modules/ --fix",
"prettier": "npx prettier --write ."
},
Expand Down