Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 0 additions & 22 deletions .air.toml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/backend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ name: CI@backend

on:
push:
branches: ["main"]
branches: ["main", "release/**"]
paths:
- 'backend/**'
- '.github/workflows/backend-ci.yaml'
pull_request:
branches: ["main"]
branches: ["main", "release/**"]
paths:
- 'backend/**'
- '.github/workflows/backend-ci.yaml'
workflow_dispatch:

permissions:
contents: read
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/frontend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: CI@frontend - Main

on:
push:
branches: ["main"]
branches: ["main", "release/**"]
paths:
- 'frontend/**'
- '.github/workflows/frontend-ci.yaml'
pull_request:
branches: ["main"]
branches: ["main", "release/**"]
paths:
- 'frontend/**'
- '.github/workflows/frontend-ci.yaml'
Expand All @@ -23,21 +23,13 @@ jobs:
runs-on: ubuntu-latest
env:
NODE_VERSION: '18'
# should be ci trigger user
GIT_USER_NAME: 'mocayo'
GIT_USER_EMAIL: '[email protected]'
BUILD_BRANCH: ${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Config Git User
run: |
git config --local user.name ${{ env.GIT_USER_NAME }}
git config --local user.email ${{ env.GIT_USER_EMAIL }}

- name: Setup Node
uses: actions/setup-node@v3
with:
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/frontend-tsc-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: CI@frontend - TS Check

on:
push:
branches: ["main"]
branches: ["main", "release/**"]
paths:
- 'frontend/**'
- '.github/workflows/frontend-tsc-ci.yaml'
pull_request:
branches: ["main"]
branches: ["main", "release/**"]
paths:
- 'frontend/**'
- '.github/workflows/frontend-tsc-ci.yaml'
Expand All @@ -23,20 +23,12 @@ jobs:
runs-on: ubuntu-latest
env:
NODE_VERSION: '18'
# should be ci trigger user
GIT_USER_NAME: 'mocayo'
GIT_USER_EMAIL: '[email protected]'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Config Git User
run: |
git config --local user.name ${{ env.GIT_USER_NAME }}
git config --local user.email ${{ env.GIT_USER_EMAIL }}

- name: Setup Node
uses: actions/setup-node@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/license-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: License Check

on:
push:
branches: ['main']
branches: ['main', "release/**"]
pull_request:
branches: ['main']
branches: ['main', "release/**"]
workflow_dispatch:

permissions:
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,10 @@ log/
node_modules/

.eslintcache

venv/

# Helm chart dependencies
release/deployment/helm-chart/umbrella/charts/
release/deployment/helm-chart/umbrella/Chart.lock

24 changes: 0 additions & 24 deletions Dockerfile

This file was deleted.

Loading
Loading