Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,18 @@ jobs:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Set Yarn global folder for Windows
if: runner.os == 'Windows'
shell: bash
run: yarn config set globalFolder "D:\\yarn-data"

- name: Set TEMP for Windows
if: runner.os == 'Windows'
shell: bash
run: |
mkdir -p /d/fast-temp
echo "TEMP=D:\\fast-temp" >> $GITHUB_ENV

- name: Install dependencies
run: yarn install --immutable

Expand Down Expand Up @@ -170,6 +182,18 @@ jobs:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Set Yarn global folder for Windows
if: runner.os == 'Windows'
shell: bash
run: yarn config set globalFolder "D:\\yarn-data"

- name: Set TEMP for Windows
if: runner.os == 'Windows'
shell: bash
run: |
mkdir -p /d/fast-temp
echo "TEMP=D:\\fast-temp" >> $GITHUB_ENV

- name: Install dependencies
run: yarn install --immutable

Expand Down
Loading