-
Notifications
You must be signed in to change notification settings - Fork 1
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
0679bee
commit f725823
Showing
5 changed files
with
13,654 additions
and
61 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 |
---|---|---|
|
@@ -6,20 +6,20 @@ concurrency: ${{ github.workflow }}-${{ github.ref }} | |
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
node-version: [ 15 ] | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: pnpm/[email protected] | ||
|
||
- name: Setup Node.js 17.x | ||
uses: actions/setup-node@v2 | ||
version: 8 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 17.x | ||
cache: pnpm | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
|
||
- name: Creating .npmrc | ||
run: | | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -9,23 +9,20 @@ concurrency: ${{ github.workflow }}-${{ github.ref }} | |
|
||
jobs: | ||
version: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
node-version: [ 15 ] | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: pnpm/[email protected] | ||
|
||
- name: Setup Node.js 17.x | ||
uses: actions/setup-node@v2 | ||
version: 8 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 17.x | ||
cache: pnpm | ||
|
||
- name: Install Dependencies | ||
run: pnpm install | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
|
||
- name: Create Update Version Pull Request | ||
id: changesets | ||
|
Oops, something went wrong.