mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
This commit is contained in:
parent
a56136ac28
commit
1fbcc3ba14
3 changed files with 4 additions and 3 deletions
3
.github/actions/build/action.yml
vendored
3
.github/actions/build/action.yml
vendored
|
|
@ -119,9 +119,6 @@ runs:
|
|||
|
||||
- name: Run E2E Tests
|
||||
shell: bash
|
||||
env:
|
||||
# Due to permissions issues, Windows needs cache turned off
|
||||
AVA_CACHE: ${{ runner.os == 'Windows' && 'false' || 'true' }}
|
||||
if: runner.os != 'Linux'
|
||||
run: yarn run test:e2e --verbose
|
||||
|
||||
|
|
|
|||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -79,6 +79,8 @@ jobs:
|
|||
env:
|
||||
NODE_VERSION: ${{ env.NODE_VERSION }}
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# Due to permissions issues, Windows needs cache turned off
|
||||
AVA_CACHE: false
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
matrix-os: windows-latest
|
||||
|
|
|
|||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -69,6 +69,8 @@ jobs:
|
|||
env:
|
||||
NODE_VERSION: ${{ env.NODE_VERSION }}
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# Due to permissions issues, Windows needs cache turned off
|
||||
AVA_CACHE: false
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
matrix-os: windows-latest
|
||||
|
|
|
|||
Loading…
Reference in a new issue