Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
diff --git a/.github/workflows/cypress-test.yaml b/.github/workflows/cypress-test.yaml index 67891b0..dc9dddf 100644 --- a/.github/workflows/cypress-test.yaml +++ b/.github/workflows/cypress-test.yaml @@ -11,7 +11,7 @@ jobs: # @see cypress-io/github-action#446 (comment) options: --user 1001 volumes: - - /home/runner/work/cypress:/__w/chikamichi/chikamichi/cypress + - /home/runner/work/cypress:/__w/cypress steps: - uses: actions/checkout@v2 - name: Cache pnpm modules @@ -40,6 +40,7 @@ jobs: start: pnpm run serve wait-on: 'http://localhost:3000' browser: chrome + config: videosFolder=/__w/cypress/videos - name: Cypress run on Firefox uses: cypress-io/github-action@v2 with: @@ -47,8 +48,9 @@ jobs: start: pnpm run serve wait-on: 'http://localhost:3000' browser: firefox + config: videosFolder=/__w/cypress/videos # upload artifact - uses: actions/upload-artifact@v2 with: name: cypress-videos - path: cypress/videos \ No newline at end of file + path: /home/runner/work/cypress/videos \ No newline at end of file
- Loading branch information