-
Notifications
You must be signed in to change notification settings - Fork 2
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
黄宗哲
authored and
黄宗哲
committed
Oct 18, 2024
1 parent
7ef8655
commit b0125b4
Showing
4 changed files
with
18 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
name: Test by jest | ||
|
||
on: [pull_request] | ||
on: [pull_request, push] | ||
|
||
jobs: | ||
lint: | ||
uses: ./.github/workflows/common-setup.yml | ||
with: | ||
cache-name: cache-node-modules | ||
test: | ||
- name: Setup Node | ||
uses: ./.github/workflows/common-setup.yml | ||
|
||
steps: | ||
- name: Run Jest Test | ||
run: pnpm run -C apps/aelf-template test | ||
- name: Run Jest Test | ||
run: pnpm run -C apps/aelf-template 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
name: Next Build | ||
|
||
on: [pull_request] | ||
on: [pull_request, push] | ||
|
||
jobs: | ||
lint: | ||
uses: ./.github/workflows/common-setup.yml | ||
with: | ||
cache-name: cache-node-modules | ||
build: | ||
- name: Setup Node | ||
uses: ./.github/workflows/common-setup.yml | ||
|
||
steps: | ||
- name: Run Next Build | ||
run: pnpm run -C apps/aelf-template build | ||
- name: Run Next Build | ||
run: pnpm run -C apps/aelf-template 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,13 +1,11 @@ | ||
name: Next Lint | ||
|
||
on: [pull_request] | ||
on: [pull_request, push] | ||
|
||
jobs: | ||
lint: | ||
uses: ./.github/workflows/common-setup.yml | ||
with: | ||
cache-name: cache-node-modules | ||
- name: Setup Node | ||
uses: ./.github/workflows/common-setup.yml | ||
|
||
steps: | ||
- name: Run ESLint | ||
run: pnpm run -C apps/aelf-template lint | ||
- name: Run ESLint | ||
run: pnpm run -C apps/aelf-template lint |