-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove registry-url from setup-node ci jobs
- Loading branch information
1 parent
e7d9614
commit 17afc6b
Showing
5 changed files
with
5 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,6 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: https://registry.npmjs.org/ # Needed for auth | ||
- name: 'Use cached node_modules' | ||
id: cache-modules | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: https://registry.npmjs.org/ # Needed for auth | ||
- name: 'Use cached node_modules' | ||
id: cache-modules | ||
uses: actions/[email protected] | ||
|
@@ -45,8 +44,8 @@ jobs: | |
${{ runner.os }}-yarn- | ||
- name: 'Install dependency' | ||
run: yarn install --frozen-lockfile | ||
|
||
# End of yarn setup | ||
|
||
- name: 'Semantic release' | ||
env: | ||
GH_TOKEN: ${{ secrets.SEMANTIC_RELEASE_PR }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: https://registry.npmjs.org/ # Needed for auth | ||
- name: 'Use cached node_modules' | ||
id: cache-modules | ||
uses: actions/[email protected] | ||
|
@@ -37,8 +36,8 @@ jobs: | |
${{ runner.os }}-yarn- | ||
- name: 'Install dependency' | ||
run: yarn install --frozen-lockfile | ||
|
||
# End of yarn setup | ||
|
||
- name: 'Audit dependencies' | ||
run: /bin/sh -c 'yarn audit --level high; [[ $? -ge 8 ]] && exit 1 || exit 0' | ||
- name: 'Types check' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,11 @@ jobs: | |
- name: 'Git checkout' | ||
uses: actions/checkout@v2 | ||
|
||
# Beginning of yarn setup, keep in sync between all workflows, see continous-integration.yml | ||
# Beginning of yarn setup, keep in sync between all workflows | ||
- name: Use node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: https://registry.npmjs.org/ # Needed for auth | ||
- name: 'Use cached node_modules' | ||
id: cache-modules | ||
uses: actions/[email protected] | ||
|
@@ -42,7 +41,7 @@ jobs: | |
${{ runner.os }}-yarn- | ||
- name: 'Install dependency' | ||
run: yarn install --frozen-lockfile | ||
# End of yarn setup | ||
# End of yarn setup | ||
|
||
- name: 'Build docs' | ||
run: yarn build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters