We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16bdae6 commit a1e47a4Copy full SHA for a1e47a4
1 file changed
.github/workflows/e2e.yml
@@ -22,6 +22,13 @@ jobs:
22
with:
23
fetch-depth: 0
24
25
+ - name: Copy Playground for E2E Tests
26
+ run: |
27
+ mkdir -p "$TEST_PROJECTS_DIR"
28
+ cp -a e2e/projects/. "$TEST_PROJECTS_DIR/"
29
+ env:
30
+ TEST_PROJECTS_DIR: "${{ runner.temp }}/projects"
31
+
32
- name: Setup Node.js 20.x
33
uses: actions/setup-node@v4
34
@@ -34,14 +41,6 @@ jobs:
41
- name: Build
35
42
run: yarn build --filter "@openapi-qraft/*" --filter "@qraft/*" --force
36
43
37
- - name: Copy Playground for E2E Tests
38
- run: |
39
- mkdir -p "$TEST_PROJECTS_DIR"
40
- cp -r playground "$TEST_PROJECTS_DIR"
- cp -a e2e/projects/. "$TEST_PROJECTS_DIR/"
- env:
- TEST_PROJECTS_DIR: "${{ runner.temp }}/projects"
44
-
45
- name: Remove Verdaccio Storage
46
run: rm -rf e2e/verdaccio-storage
47
0 commit comments