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
|
- name: Run E2E Tests
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
|
||||||
# Due to permissions issues, Windows needs cache turned off
|
|
||||||
AVA_CACHE: ${{ runner.os == 'Windows' && 'false' || 'true' }}
|
|
||||||
if: runner.os != 'Linux'
|
if: runner.os != 'Linux'
|
||||||
run: yarn run test:e2e --verbose
|
run: yarn run test:e2e --verbose
|
||||||
|
|
||||||
|
|
|
||||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -79,6 +79,8 @@ jobs:
|
||||||
env:
|
env:
|
||||||
NODE_VERSION: ${{ env.NODE_VERSION }}
|
NODE_VERSION: ${{ env.NODE_VERSION }}
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# Due to permissions issues, Windows needs cache turned off
|
||||||
|
AVA_CACHE: false
|
||||||
with:
|
with:
|
||||||
node-version: ${{ env.NODE_VERSION }}
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
matrix-os: windows-latest
|
matrix-os: windows-latest
|
||||||
|
|
|
||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -69,6 +69,8 @@ jobs:
|
||||||
env:
|
env:
|
||||||
NODE_VERSION: ${{ env.NODE_VERSION }}
|
NODE_VERSION: ${{ env.NODE_VERSION }}
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# Due to permissions issues, Windows needs cache turned off
|
||||||
|
AVA_CACHE: false
|
||||||
with:
|
with:
|
||||||
node-version: ${{ env.NODE_VERSION }}
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
matrix-os: windows-latest
|
matrix-os: windows-latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue