Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
YukiOnishi1129 committed Dec 6, 2024
1 parent 6ba90e0 commit 2084232
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/batch_service_pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: batch_service_pr_check

on:
push:
branches:
branches:
- "main"
- "develop"
- "feature/*"
Expand All @@ -21,8 +21,8 @@ jobs:

strategy:
matrix:
go: ['1.22']
go: ["1.22"]

services:
postgres:
image: docker.io/postgres:16-alpine
Expand All @@ -40,7 +40,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Go
uses: actions/setup-go@v3
with:
Expand All @@ -59,6 +59,6 @@ jobs:
POSTGRES_USER: root
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres

- name: Go Build
run: go build -v ./...
run: go build -v ./...
12 changes: 8 additions & 4 deletions .github/workflows/bff_apollo_gateway_pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
paths:
- "bff/apollo-gateway/**"
- ".github/workflows/bff_apollo_gateway_pr_check.yml"
pull_request:
types: [opened, synchronize]
paths:
- "bff/apollo-gateway/**"
- ".github/workflows/bff_apollo_gateway_pr_check.yml"

jobs:
build:
Expand Down Expand Up @@ -40,10 +45,9 @@ jobs:

- name: Lint
run: npm run lint
# - name: Test
# run: npm run test

# - name: Test
# run: npm run test

- name: Build
run: npm run build

7 changes: 6 additions & 1 deletion .github/workflows/web_client_v2_pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
paths:
- "web/client-v2/**"
- ".github/workflows/web_client_v2_pr_check.yml"
pull_request:
types: [opened, synchronize]
paths:
- "web/client-v2/**"
- ".github/workflows/web_client_v2_pr_check.yml"
#
jobs:
build:
Expand Down Expand Up @@ -40,7 +45,7 @@ jobs:

- name: Lint
run: npm run lint

- name: Test
run: npm run test

Expand Down

0 comments on commit 2084232

Please sign in to comment.