Skip to content

Commit 11003e0

Browse files
committed
chore: bump node and add semantic dry run
1 parent 5e5f0e3 commit 11003e0

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
env:
88
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9-
NODE_VERSION: "20"
9+
NODE_VERSION: "22"
1010

1111
jobs:
1212
docker:

.github/workflows/test.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
DB_VERSION: 1.1.0
1111
GO_VERSION: "1.24"
12-
NODE_VERSION: "20"
12+
NODE_VERSION: "22"
1313

1414
concurrency:
1515
group: ci-${{ github.ref }}
@@ -110,3 +110,23 @@ jobs:
110110
- name: API Test
111111
run: |
112112
make ci-tests
113+
114+
semantic:
115+
name: "Semantic Release Dry Run"
116+
needs: [run-ci]
117+
runs-on: ubuntu-latest
118+
if: ${{ !github.event.pull_request.draft }}
119+
steps:
120+
- name: Setup nodeJs
121+
uses: actions/setup-node@v6
122+
with:
123+
node-version: ${{ env.NODE_VERSION }}
124+
125+
- name: Check out code into the Go module directory
126+
uses: actions/checkout@v6
127+
128+
- name: Install dependencies
129+
run: npm ci
130+
131+
- name: Semantic Release Dry Run
132+
run: npx semantic-release --dry-run

0 commit comments

Comments
 (0)