File tree Expand file tree Collapse file tree 1 file changed +20
-16
lines changed Expand file tree Collapse file tree 1 file changed +20
-16
lines changed Original file line number Diff line number Diff line change 4
4
- workflow_dispatch
5
5
6
6
jobs :
7
- test :
8
- runs-on : ubuntu-latest
7
+ # test:
8
+ # runs-on: ubuntu-latest
9
9
10
- strategy :
11
- matrix :
12
- node_version : [16, 18, 20, 21]
10
+ # strategy:
11
+ # matrix:
12
+ # node_version: [16, 18, 20, 21]
13
13
14
- steps :
15
- - uses : actions/checkout@v3
16
- - name : Setup
17
- uses : ./.github/actions/setup
18
- with :
19
- node_version : ${{ matrix.node_version }}
14
+ # steps:
15
+ # - uses: actions/checkout@v3
16
+ # - name: Setup
17
+ # uses: ./.github/actions/setup
18
+ # with:
19
+ # node_version: ${{ matrix.node_version }}
20
20
21
- - name : Test
22
- uses : ./.github/actions/test
23
- with :
24
- codecov_token : ${{ secrets.CODECOV_TOKEN }}
21
+ # - name: Test
22
+ # uses: ./.github/actions/test
23
+ # with:
24
+ # codecov_token: ${{ secrets.CODECOV_TOKEN }}
25
25
26
26
release :
27
27
runs-on : ubuntu-latest
28
28
29
29
if : github.ref == 'refs/heads/main'
30
30
31
- needs : [test]
31
+ # needs: [test]
32
32
33
33
steps :
34
34
- uses : actions/checkout@v3
35
35
- name : Setup
36
36
uses : ./.github/actions/setup
37
37
38
+ - name : Build Headless Kit
39
+ shell : bash
40
+ run : npx nx build headless
41
+
38
42
- name : Release
39
43
uses : ./.github/actions/release
40
44
with :
You can’t perform that action at this time.
0 commit comments