-
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drop redundant npm installation from github workflows
- Loading branch information
1 parent
dd5b24f
commit c8c3413
Showing
2 changed files
with
5 additions
and
9 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 |
---|---|---|
|
@@ -13,12 +13,10 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
# We need this particular version, as npm 8.5.5 is the last version | ||
# that works with our package.json :sadface:. | ||
node-version: '16.15.0' | ||
cache: 'npm' | ||
- name: Downgrading npm to 8.5.5 | ||
uses: reedyuk/[email protected] | ||
with: | ||
version: '8.5.5' | ||
- uses: browser-actions/setup-chrome@latest | ||
- run: chrome --version | ||
- run: npm install | ||
|
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 |
---|---|---|
|
@@ -38,12 +38,10 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
# We need this particular version, as npm 8.5.5 is the last version | ||
# that works with our package.json :sadface:. | ||
node-version: '16.15.0' | ||
cache: 'npm' | ||
- name: Downgrading npm to 8.5.5 | ||
uses: reedyuk/[email protected] | ||
with: | ||
version: '8.5.5' | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
|