This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: moving local development up to npm@7 (#1318)
* chore: upgrading the variable pkg to npm@7 * chore: updating oas-to-snippet to npm@7 * chore: updating some `variable` pkg deps to fix security issues * chore: updating oas-to-har to npm7 * chore: updating oas-form to npm7 * chore: updating oas-extensions to npm7 * chore: updating api-logs to npm7 * chore: moving everything over to npm7 * chore: removing the need for lodash in the dev server * fix: issue where our PHP SDK would be labeled as "Php" * ci: updating CI to use npm7 and test on npm12/14/16 * ci: run bundlewatch with npm7 * test: fixing a broken logs test * ci: only run tests against node14 * ci: fix the ci workflow * ci: fix the ci workflow yaml again * ci: using npm workspaces for builds, not lerna * ci: fixing node-sass * ci: rebuild node-sass before running bundles * ci: rebuild node-sass as a postinstall stage instead
- Loading branch information
Showing
26 changed files
with
180,891 additions
and
26,182 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,26 +4,24 @@ on: [push] | |
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [12.x, 14.x] | ||
node-version: [14.x] | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install npm@7 | ||
run: npm install -g npm@7 | ||
|
||
- name: Consolidate dependencies | ||
run: npx lerna bootstrap --hoist | ||
- name: Install deps | ||
run: npm ci | ||
|
||
- name: Run tests | ||
run: npm test | ||
- name: Run tests | ||
run: npm test |
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.