File tree 2 files changed +9
-13
lines changed
2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change 26
26
27
27
28
28
build_playground :
29
+ needs : build
29
30
name : 🛝 Build Playground
30
31
runs-on : ubuntu-latest
31
32
steps :
35
36
36
37
- run : pnpm build:testing
37
38
39
+ - name : Upload artifact
40
+ uses : actions/upload-pages-artifact@v1
41
+ with :
42
+ path : ' ./testing/dist/'
43
+
38
44
unit_tests :
39
45
name : 🧪 Unit Tests
40
46
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
- # This is a basic workflow to help you get started with Actions
2
-
3
- name : CI
1
+ name : 🛝 Publish Playground
4
2
5
3
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
6
4
permissions :
23
21
uses : ./.github/workflows/_tests.yml
24
22
secrets : inherit
25
23
26
- build :
24
+ publish :
25
+ name : 🛝 Publish Playground to GitHub Pages
27
26
# The type of runner that the job will run on
28
27
runs-on : ubuntu-latest
29
28
needs : tests
32
31
steps :
33
32
- uses : actions/checkout@v3
34
33
35
- - uses : ./.github/actions/setup
36
-
37
- - run : pnpm build:testing
38
-
39
- - name : Upload artifact
40
- uses : actions/upload-pages-artifact@v1
41
- with :
42
- path : ' ./testing/dist/'
43
-
44
34
- name : Deploy to GitHub Pages
45
35
id : deployment
46
36
uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments