Skip to content

Commit

Permalink
Fix upload artifact step of main workflow to work for all runners (#607)
Browse files Browse the repository at this point in the history
  • Loading branch information
djelinek authored Jan 28, 2023
1 parent 017440f commit 61f7d23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
if: failure()
with:
name: screenshots-${{ matrix.os }}-${{ matrix.version }}
path: test/test-project/**/screenshots/*.png
path: ${{ github.workspace }}/test/**/screenshots/*.png

check:
if: always()
Expand Down
2 changes: 1 addition & 1 deletion test/test-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"lint": "eslint src --ext .ts",
"watch": "tsc -watch -p ./",
"ui-test": "npm run compile && extest setup-and-run './out/src/test/**/customView*test.js' -u -i -r . -e ./test-extensions ",
"ci-test": "npm run compile && extest setup-and-run './out/src/test/**/*test.js' -u -i -r . -s ~/test -e ./test-extensions"
"ci-test": "npm run compile && extest setup-and-run './out/src/test/**/*test.js' -u -i -r . -e ./test-extensions"
},
"devDependencies": {
"@types/chai": "^4.3.4",
Expand Down

0 comments on commit 61f7d23

Please sign in to comment.