We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 704c60a commit 9949f67Copy full SHA for 9949f67
.github/workflows/cli-e2e.yml
@@ -20,16 +20,21 @@ jobs:
20
with:
21
version: 8
22
23
- - name: "Set up Node 18"
+ - name: "Set up latest Node LTS"
24
uses: actions/setup-node@v3
25
26
- node-version: 18
+ node-version: "lts/*"
27
cache: pnpm
28
29
- name: "Install dependencies"
30
run: pnpm install
31
32
- - name: "Get test files"
+ # Build is necessary, as the `get-e2e-test-files-array` script returns built files
33
+ - name: "Build"
34
+ working-directory: packages/create-next-stack
35
+ run: npx turbo build
36
+
37
+ - name: "Set test files"
38
id: set-test-files
39
working-directory: packages/create-next-stack
40
run: |
0 commit comments