File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed
Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 66
77env :
88 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
9- NODE_VERSION : " 20 "
9+ NODE_VERSION : " 22 "
1010
1111jobs :
1212 docker :
Original file line number Diff line number Diff line change 99env :
1010 DB_VERSION : 1.1.0
1111 GO_VERSION : " 1.24"
12- NODE_VERSION : " 20 "
12+ NODE_VERSION : " 22 "
1313
1414concurrency :
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
You can’t perform that action at this time.
0 commit comments