-
Notifications
You must be signed in to change notification settings - Fork 14
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
cd895a6
commit 774ec0a
Showing
19 changed files
with
453 additions
and
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
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: check / frontend | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- '.github/workflow/pr-checks-frontend.yml' | ||
- '**/*.ts' | ||
- '**/*.tsx' | ||
- '**/yarn.lock' | ||
- '**/package.json' | ||
- '**/Makefile' | ||
- '**/Dockerfile' | ||
pull_request: | ||
branches: [main] | ||
paths: | ||
- '.github/workflow/pr-checks-frontend.yml' | ||
- '**/*.ts' | ||
- '**/*.tsx' | ||
- '**/yarn.lock' | ||
- '**/package.json' | ||
- '**/Makefile' | ||
- '**/Dockerfile' | ||
|
||
jobs: | ||
run-check: | ||
name: check | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
scenario: ["make vm-frontend-plugin-build", "yarn test"] | ||
steps: | ||
- name: Code checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.13.0 | ||
|
||
- name: Install all dependencies | ||
run: yarn install | ||
|
||
- name: Run | ||
run: | | ||
${{ matrix.scenario }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.