Skip to content

Commit

Permalink
chore: ignore ci checks for client and get correct action variables (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
junglesub authored Sep 23, 2024
1 parent 075ba86 commit 12e14d0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
build:
runs-on: ubuntu-latest

environment: SPRING_BOOT

# 깃허브에서 제공하는 checkout 엑션 사용
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ task buildReact(type: Exec) {
workingDir "$frontendDir"
inputs.dir "$frontendDir"
group = BasePlugin.BUILD_GROUP

environment 'CI', 'false' // Disable CI check for lints

if (System.getProperty('os.name').toLowerCase(Locale.ROOT).contains('windows')) {
commandLine "npm.cmd", "run-script", "build"
} else {
Expand Down

0 comments on commit 12e14d0

Please sign in to comment.