Skip to content

Commit e841db3

Browse files
committed
docs: add semantic release dry run check
1 parent f715877 commit e841db3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,23 @@ jobs:
8383
PALETTE_REGISTRY_CLI_VERSION=${{env.PALETTE_REGISTRY_CLI_VERSION}}
8484
K9S_VERSION=${{env.K9S_VERSION}}
8585
SPECTRO_CLI_VERSION=${{env.SPECTRO_CLI_VERSION}}
86+
87+
semantic:
88+
name: "Semantic Release Dry Run"
89+
needs: [run-ci]
90+
runs-on: ubuntu-latest
91+
if: ${{ !github.event.pull_request.draft }}
92+
steps:
93+
- name: Setup nodeJs
94+
uses: actions/setup-node@v6
95+
with:
96+
node-version: "20"
97+
98+
- name: Check out code into the Go module directory
99+
uses: actions/checkout@v6
100+
101+
- name: Install dependencies
102+
run: npm ci
103+
104+
- name: Semantic Release Dry Run
105+
run: npx semantic-release --dry-run

0 commit comments

Comments
 (0)