-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updates yarn and deps * fixes * yarn * sdks * updates
- Loading branch information
1 parent
12b3f65
commit 24b7216
Showing
597 changed files
with
16,619 additions
and
16,300 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 |
---|---|---|
@@ -1 +1 @@ | ||
ignores: ["@yarnpkg/sdks", "depcheck", "prettier", "@yarnpkg/pnpify"] | ||
ignores: ["@yarnpkg/sdks", "depcheck", "prettier"] |
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 |
---|---|---|
|
@@ -6,10 +6,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 14.x | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.x | ||
node-version: 18.x | ||
- run: yarn | ||
- name: Build the typescript code | ||
run: yarn build | ||
- uses: actions/upload-artifact@main | ||
|
@@ -22,24 +23,26 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
node-version: [12.x, 14.x] | ||
node-version: [18.x] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: yarn | ||
- run: yarn test | ||
|
||
run-depcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 14.x | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.x | ||
- run: yarn pnpify depcheck | ||
node-version: 18.x | ||
- run: yarn | ||
- run: yarn depcheck | ||
|
||
run-pre-commits: | ||
runs-on: ubuntu-latest | ||
|
@@ -48,10 +51,11 @@ jobs: | |
with: | ||
fetch-depth: 100 # need the history to do a changed files check below (source, origin) | ||
- uses: actions/setup-python@v2 | ||
- name: Use Node.js 14.x | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.x | ||
node-version: 18.x | ||
- run: yarn | ||
- uses: pre-commit/[email protected] | ||
with: | ||
extra_args: --source ${{ github.event.pull_request.base.sha || 'HEAD~1' }} --origin ${{ github.event.pull_request.head.sha || 'HEAD' }} | ||
|
@@ -69,7 +73,7 @@ jobs: | |
uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14.x' | ||
node-version: '18.x' | ||
- name: Configure NPM authentication | ||
run: | | ||
yarn config set npmAlwaysAuth true | ||
|
@@ -90,7 +94,7 @@ jobs: | |
uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14.x' | ||
node-version: '18.x' | ||
- name: Configure Github Packages authentication | ||
run: | | ||
yarn config set npmAlwaysAuth true | ||
|
Oops, something went wrong.