diff options
| author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2023-01-26 08:07:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-26 16:07:15 +0900 |
| commit | 1d6767ef0c05bf78127afe576b143fd4e59524a7 (patch) | |
| tree | 058f4cad5b4f5f1a19b426224986a544119950e3 | |
| parent | refactor: /proxyをFileServerServiceに統合し、/proxyのurlで/filesが... (diff) | |
| download | misskey-1d6767ef0c05bf78127afe576b143fd4e59524a7.tar.gz misskey-1d6767ef0c05bf78127afe576b143fd4e59524a7.tar.bz2 misskey-1d6767ef0c05bf78127afe576b143fd4e59524a7.zip | |
Try reinstalling cypress in CI (#9694)
| -rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48e2b19d6a..9135b4f60a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -109,8 +109,12 @@ jobs: # https://github.com/cypress-io/cypress/issues/4351#issuecomment-559489091 - name: ALSA Env run: echo -e 'pcm.!default {\n type hw\n card 0\n}\n\nctl.!default {\n type hw\n card 0\n}' > ~/.asoundrc + # XXX: This tries reinstalling Cypress if the binary is not cached + # Remove this when the cache issue is fixed + - name: Cypress install + run: pnpm exec cypress install - name: Cypress run - uses: cypress-io/github-action@v4 + uses: cypress-io/github-action@v5 with: install: false start: pnpm start:test |