We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b6578 commit e125de7Copy full SHA for e125de7
.github/workflows/release.yml
@@ -19,7 +19,6 @@ jobs:
19
with:
20
cache: "npm"
21
node-version-file: ".nvmrc"
22
- - uses: nrwl/nx-set-shas@v3
23
- run: npm ci
24
- name: Build
25
run: npx nx run-many --target=build --parallel=3
@@ -30,7 +29,8 @@ jobs:
30
29
npx lerna version --no-private --conventional-commits --yes
31
env:
32
GH_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
33
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
34
- name: Set Current Version
35
run: |
36
CURRENT_VERSION=$(node -p 'require("./lerna.json").version')
commitlint.config.js
@@ -1 +1 @@
1
-module.exports = {extends: ['@commitlint/config-conventional']}
+module.exports = { extends: ["@commitlint/config-conventional"] };
0 commit comments