-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(node): use node 16, npm 7 and lockfileVersion 2 exclusively (#486)
- Loading branch information
1 parent
7f02939
commit 1c4e0f8
Showing
30 changed files
with
108,910 additions
and
15,531 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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: 'package-lock.json validator' | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
paths: | ||
- '**/package-lock.json' | ||
pull_request: | ||
branches: [master] | ||
paths: | ||
- '**/package-lock.json' | ||
|
||
jobs: | ||
lockfile-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Check lockfileVersion of all package-lock.json | ||
run: node scripts/check-lockfile-versions.js $(find ./ -xdev -wholename '**/package-lock.json') |
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
name: PrTitleSemanticLint | ||
on: | ||
pull_request: | ||
branches: [ master ] | ||
branches: [master] | ||
types: [opened, edited, synchronize, reopened] | ||
jobs: | ||
Lint: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Ensure PR Title is Semantic | ||
run: | | ||
npm ci | ||
npx @coveo/is-pr-title-semantic | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Ensure PR Title is Semantic | ||
run: | | ||
npm ci | ||
npx @coveo/is-pr-title-semantic |
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
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
Oops, something went wrong.