-
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.
Merge pull request #71 from thencc/main
0.3.0 merge to latest
- Loading branch information
Showing
201 changed files
with
36,085 additions
and
11,454 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 |
---|---|---|
|
@@ -58,15 +58,20 @@ jobs: | |
- name: "setup node" | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14' | ||
node-version: 16 | ||
registry-url: 'https://registry.npmjs.org' | ||
# creates an .npmrc | ||
|
||
- name: "install" | ||
run: npm ci | ||
- name: "setup pnpm" | ||
uses: pnpm/[email protected] | ||
with: | ||
version: 8.5.0 | ||
# auto install on use | ||
run_install: | | ||
args: [--no-frozen-lockfile, --strict-peer-dependencies] | ||
- name: "build" | ||
run: npm run build | ||
run: pnpm run build | ||
|
||
- name: "publish" | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -13,9 +13,21 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: "setup node env" | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14' | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
node-version: 16 | ||
|
||
- uses: pnpm/[email protected] | ||
with: | ||
version: 8.5.0 | ||
run_install: | | ||
args: [--no-frozen-lockfile, --strict-peer-dependencies] | ||
# old way: | ||
# - run: npm ci | ||
# - run: npm run build | ||
|
||
# new way: (faster) | ||
- run: pnpm build |
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,3 +1,4 @@ | ||
coverage/ | ||
node_modules | ||
.DS_Store | ||
*.local | ||
|
Oops, something went wrong.