diff options
| author | Luke Parker <[email protected]> | 2026-04-10 10:01:10 +1000 |
|---|---|---|
| committer | opencode <[email protected]> | 2026-04-10 01:00:21 +0000 |
| commit | b16ee08fd5c867fa1402237d53bb43d62a61cff2 (patch) | |
| tree | 5a601d07cc7c1f6e32446a3950a18e9725b57f03 /.github/workflows/test.yml | |
| parent | 98874a09f76402e9bdc5df197faab24f4e477c2f (diff) | |
| download | opencode-b16ee08fd5c867fa1402237d53bb43d62a61cff2.tar.gz opencode-b16ee08fd5c867fa1402237d53bb43d62a61cff2.zip | |
ci use node 24 in test workflow fixing random ECONNRESET (#21782)
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 70a8477fb..510f68254 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,6 +17,9 @@ permissions: contents: read checks: write +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: unit: name: unit (${{ matrix.settings.name }}) @@ -38,6 +41,11 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: "24" + - name: Setup Bun uses: ./.github/actions/setup-bun @@ -102,6 +110,11 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: "24" + - name: Setup Bun uses: ./.github/actions/setup-bun |
