-
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
Showing
7 changed files
with
57 additions
and
40 deletions.
There are no files selected for viewing
6 changes: 5 additions & 1 deletion
6
.github/workflows/check-format-build.yml → .github/workflows/backend-checks.yml
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
5 changes: 4 additions & 1 deletion
5
.github/workflows/ci.yml → .github/workflows/backend-net-checks.yml
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,41 @@ | ||
name: Check frontend | ||
|
||
on: | ||
push: | ||
branches: main | ||
paths: | ||
- frontend/** | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
branches: [ main ] | ||
paths: | ||
- frontend/** | ||
|
||
env: | ||
NODE_VERSION: "18.18.2" | ||
|
||
jobs: | ||
checks: | ||
name: Formatting and types | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
cache: 'yarn' | ||
cache-dependency-path: frontend/yarn.lock | ||
- name: Install deps | ||
working-directory: frontend | ||
run: yarn install --frozen-lockfile --immutable | ||
- name: Check formatting | ||
working-directory: frontend | ||
run: yarn run formatcheck | ||
- name: Check types | ||
working-directory: frontend | ||
run: yarn run typecheck | ||
# - name: Linting | ||
# working-directory: frontend | ||
# run: yarn run lintcheck |
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,4 +1,4 @@ | ||
name: Make release of the frontend | ||
name: Publish frontend docker image on DockerHub | ||
|
||
on: | ||
push: | ||
|
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 was deleted.
Oops, something went wrong.
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