-
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.
- Loading branch information
1 parent
12b3f65
commit 53d26f3
Showing
606 changed files
with
15,151 additions
and
15,713 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,10 @@ 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 | ||
- name: Build the typescript code | ||
run: yarn build | ||
- uses: actions/upload-artifact@main | ||
|
@@ -22,24 +22,26 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
node-version: [12.x, 14.x] | ||
node-version: [12.x, 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 +50,10 @@ 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 | ||
- 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 +71,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 +92,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.