Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_VERSION: "20"
NODE_VERSION: "22"

jobs:
docker:
Expand Down
23 changes: 22 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ on:
env:
DB_VERSION: 1.1.0
GO_VERSION: "1.24"
NODE_VERSION: "20"
NODE_VERSION: "22"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

concurrency:
group: ci-${{ github.ref }}
Expand Down Expand Up @@ -110,3 +111,23 @@ jobs:
- name: API Test
run: |
make ci-tests

semantic:
name: "Semantic Release Dry Run"
needs: [run-ci]
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Setup nodeJs
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}

- name: Check out code into the Go module directory
uses: actions/checkout@v6

- name: Install dependencies
run: npm ci

- name: Semantic Release Dry Run
run: npx semantic-release --dry-run
126 changes: 67 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"husky": "^9.1.7",
"@semantic-release/exec": "^7.1.0",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@commitlint/config-conventional": "^20.4.0",
"@semantic-release/github": "latest",
"@semantic-release/git": "latest",
"@semantic-release/npm": "latest"
Expand Down