We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 298ed1d commit 701ad72Copy full SHA for 701ad72
.github/workflows/_tests.yml
@@ -24,6 +24,13 @@ jobs:
24
25
- run: pnpm build
26
27
+ - name: 🔺 Upload frontend distribution artifacts
28
+ uses: actions/upload-artifact@v3
29
+ with:
30
+ name: build_distribution
31
+ path: theme/dist
32
+ if-no-files-found: error
33
+ retention-days: 1
34
35
build_playground:
36
needs: build
@@ -32,14 +39,21 @@ jobs:
39
steps:
40
- uses: actions/checkout@v3
41
42
+ - name: 🔻 Download build artifacts
43
+ uses: actions/download-artifact@v3
44
45
46
47
+
48
- uses: ./.github/actions/setup
49
37
50
- run: pnpm build:testing
38
51
52
- name: Upload artifact
53
+ if: github.ref == 'refs/heads/main'
54
uses: actions/upload-pages-artifact@v1
55
with:
- path: './testing/dist/'
56
+ path: testing/dist
57
58
unit_tests:
59
name: 🧪 Unit Tests
0 commit comments