-
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.
fix: fix github workflows not matching proper apps
- Loading branch information
1 parent
a79f753
commit c382ef7
Showing
15 changed files
with
2,017,315 additions
and
59,344 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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Frontend | ||
|
||
on: | ||
push: | ||
paths: | ||
- "frontend/**" | ||
- ".github/workflows/code_check_frontend.yml" | ||
|
||
defaults: | ||
run: | ||
working-directory: frontend | ||
|
||
jobs: | ||
# Uncomment once tests are implemented | ||
# test: | ||
# runs-on: ubuntu-latest | ||
|
||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v4 | ||
|
||
# - name: Cache dependencies | ||
# uses: actions/cache@v2 | ||
# with: | ||
# path: node_modules | ||
# key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }} | ||
|
||
# - name: Set up Node.js & Install dependencies | ||
# uses: actions/setup-node@v4 | ||
|
||
# - run: npm ci | ||
|
||
# - name: 🧪 Test | ||
# run: | | ||
# npm run test | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: node_modules | ||
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
|
||
- run: npm ci | ||
|
||
- name: 👕 Lint | ||
run: | | ||
npm run lint | ||
type_check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: node_modules | ||
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
|
||
- run: npm ci | ||
|
||
- name: 🔍 Type Check | ||
run: | | ||
npm run tsc |
Oops, something went wrong.