-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into joshhale-patch-1
- Loading branch information
Showing
6 changed files
with
1,694 additions
and
10,999 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 |
---|---|---|
|
@@ -12,6 +12,12 @@ jobs: | |
- name: 'Checkout Repository' | ||
uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
# As of 2023-02-22, the ubuntu-latest image uses npm v8.3.1. This version | ||
# has a bug that prevents loading dependency-submission-toolkit in the | ||
# 'example/' project. npm v8.4.1 (same version in Codespace created on | ||
# same date) is known to work. Not pinned to latest to avoid | ||
# reproducibility issues. | ||
- run: npm install [email protected] -g | ||
- name: Install NPM dependencies | ||
run: npm ci | ||
- name: Run all NPM build/test actions | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
# As of 2023-02-22, the ubuntu-latest image uses npm v8.3.1. This version | ||
# has a bug that prevents loading dependency-submission-toolkit in the | ||
# 'example/' project. npm v8.4.1 (same version in Codespace created on | ||
# same date) is known to work. Not pinned to latest to avoid | ||
# reproducibility issues. | ||
- run: npm install [email protected] -g | ||
- name: Install NPM dependencies | ||
run: npm ci | ||
- run: npm install | ||
- name: Run all NPM build/test actions | ||
run: npm rebuild && npm run all |
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.