-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FE: Build fix, add tsc to build goal (#191)
- Loading branch information
Showing
3 changed files
with
13 additions
and
4 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 |
---|---|---|
|
@@ -13,37 +13,45 @@ jobs: | |
NODE_ENV: dev | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
# Disabling shallow clone is recommended for improving relevancy of reporting | ||
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
token: ${{ github.token }} | ||
|
||
- uses: pnpm/[email protected] | ||
with: | ||
version: 8.6.12 | ||
|
||
- name: Install node | ||
uses: actions/[email protected] | ||
with: | ||
node-version: "18.17.1" | ||
cache: "pnpm" | ||
cache-dependency-path: "./frontend/pnpm-lock.yaml" | ||
|
||
- name: Install Node dependencies | ||
run: | | ||
cd frontend/ | ||
pnpm install --frozen-lockfile | ||
- name: Generate sources | ||
- name: Compile | ||
run: | | ||
cd frontend/ | ||
pnpm gen:sources | ||
pnpm compile | ||
- name: Linter | ||
run: | | ||
cd frontend/ | ||
pnpm lint:CI | ||
- name: Tests | ||
run: | | ||
cd frontend/ | ||
pnpm test:CI | ||
- name: SonarCloud Scan | ||
if: false # TODO remove when public | ||
uses: sonarsource/sonarcloud-github-action@master | ||
|
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