Skip to content

Commit 67dbac4

Browse files
committed
ci: disabled temporarily tests on release
1 parent 6823be8 commit 67dbac4

File tree

1 file changed

+20
-16
lines changed

1 file changed

+20
-16
lines changed

.github/workflows/release.yml

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,41 @@ on:
44
- workflow_dispatch
55

66
jobs:
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:

0 commit comments

Comments
 (0)