Skip to content

Commit 77d0ce3

Browse files
committed
fix vercel e2e?
1 parent 34073ac commit 77d0ce3

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/test-e2e.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ jobs:
105105
path: ${{ env.next-path }}
106106
ref: ${{ matrix.version_spec.tag }}
107107

108+
- name: checkout runtime repo
109+
uses: actions/checkout@v5
110+
with:
111+
path: ${{ env.runtime-path }}
112+
108113
- name: Decide Node Version
109114
id: decide-node-version
110115
shell: bash
@@ -118,15 +123,11 @@ jobs:
118123
fi
119124
echo "version=$NODE_VERSION" >> $GITHUB_OUTPUT
120125
echo "Node version for 'next@${{ matrix.version_spec.selector }}' is '$NODE_VERSION'"
121-
- name: checkout runtime repo
122-
uses: actions/checkout@v5
123-
with:
124-
path: ${{ env.runtime-path }}
125126
126127
- name: setup node
127128
uses: actions/setup-node@v4
128129
with:
129-
node-version: ${{ env.NODE_VERSION }}
130+
node-version: ${{ steps.decide-node-version.outputs.version }}
130131

131132
- name: setup pnpm/yarn
132133
run: corepack enable

0 commit comments

Comments
 (0)