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 44 - workflow_dispatch
55
66jobs :
7- test :
8- runs-on : ubuntu-latest
7+ # test:
8+ # runs-on: ubuntu-latest
99
10- strategy :
11- matrix :
12- node_version : [16, 18, 20, 21]
10+ # strategy:
11+ # matrix:
12+ # node_version: [16, 18, 20, 21]
1313
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 }}
2020
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 }}
2525
2626 release :
2727 runs-on : ubuntu-latest
2828
2929 if : github.ref == 'refs/heads/main'
3030
31- needs : [test]
31+ # needs: [test]
3232
3333 steps :
3434 - uses : actions/checkout@v3
3535 - name : Setup
3636 uses : ./.github/actions/setup
3737
38+ - name : Build Headless Kit
39+ shell : bash
40+ run : npx nx build headless
41+
3842 - name : Release
3943 uses : ./.github/actions/release
4044 with :
You can’t perform that action at this time.
0 commit comments