File tree Expand file tree Collapse file tree 1 file changed +48
-1
lines changed Expand file tree Collapse file tree 1 file changed +48
-1
lines changed Original file line number Diff line number Diff line change 7
7
- main
8
8
9
9
jobs :
10
- validate :
10
+ wxt :
11
+ name : WXT
11
12
runs-on : ubuntu-20.04
12
13
steps :
13
14
- name : Checkout
46
47
47
48
- name : Tests
48
49
run : pnpm test:coverage
50
+
51
+ project-templates :
52
+ name : Project Templates
53
+ runs-on : ubuntu-20.04
54
+ steps :
55
+ - name : Checkout
56
+ uses : actions/checkout@v3
57
+
58
+ - name : Setup PNPM
59
+ uses : pnpm/action-setup@v2
60
+ with :
61
+ version : 8
62
+
63
+ - name : Setup NodeJS
64
+ uses : actions/setup-node@v3
65
+ with :
66
+ node-version : 18
67
+ cache : ' pnpm'
68
+
69
+ - name : Validate Vanilla
70
+ working-directory : templates/vanilla
71
+ run : |
72
+ npm i
73
+ npm run build
74
+ npm run compile
75
+
76
+ - name : Validate Vue
77
+ working-directory : templates/vue
78
+ run : |
79
+ npm i
80
+ npm run build
81
+ npm run compile
82
+
83
+ - name : Validate React
84
+ working-directory : templates/react
85
+ run : |
86
+ npm i
87
+ npm run build
88
+ npm run compile
89
+
90
+ - name : Validate Svelte
91
+ working-directory : templates/svelte
92
+ run : |
93
+ npm i
94
+ npm run build
95
+ npm run check
You can’t perform that action at this time.
0 commit comments