Skip to content
Closed
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ jobs:
run: |
npm i -g [email protected]
corepack enable
- name: Check tmp
run: |
echo ${{ runner.temp }}
node -e "const os = require('os'); console.log(os.tmpdir())"
node -e "console.log(process.env)"
- name: Determine deploy target
# 'force-preview' performs a full preview build but only if acknowledged i.e. workflow_dispatch
# 'automated-preview' for pushes on branches other than 'canary' for integration testing.
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,10 @@ jobs:
# We must use a login shell: fnm installation may modify the `.profile`
shell: bash -le {0}
timeout-minutes: ${{ inputs.timeout_minutes }}
env:
# Used by Node.js in os.tmpdir()
# TODO: Make sure our own runners set TEMP to a temp directory that is cleaned up between runs
TEMP: ${{ runner.temp }}

# This file messes up the tests because it influences the build root autodetection.
- name: Clean up stray files
Expand Down
Loading