diff options
| author | Dax Raad <[email protected]> | 2026-04-09 21:35:09 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-04-09 21:35:09 -0400 |
| commit | 0970b102e1bcea4b02b736edb30c85d33acaef3f (patch) | |
| tree | e21bf5a637e6df077d0dc2c1cc1369afb79d6304 /.github | |
| parent | 04074d3f4a62e039e11ff73e73b1a2be6f651439 (diff) | |
| parent | b16ee08fd5c867fa1402237d53bb43d62a61cff2 (diff) | |
| download | opencode-0970b102e1bcea4b02b736edb30c85d33acaef3f.tar.gz opencode-0970b102e1bcea4b02b736edb30c85d33acaef3f.zip | |
Merge remote-tracking branch 'origin/dev' into dev
Diffstat (limited to '.github')
| -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 |
