Skip to content

Commit

Permalink
Update ci1.yml V4
Browse files Browse the repository at this point in the history
  • Loading branch information
Chua123Yun authored Sep 4, 2024
1 parent 5dd5753 commit f104f9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:

# Make the build script executable
- name: Make build script executable
run: chmod +x ./scripts/build-frontend-if-needed.sh
run: chmod +x scripts/build-frontend-if-needed.sh

# Run yarn build command
- name: Run yarn build:frontend:if-needed
run: ./scripts/build-frontend-if-needed.sh

# Build with Gradle
- name: Build with Gradle
run: gradle build
run: ./gradlew build

# Upload Build Artifacts
- name: Upload Build Artifacts
Expand All @@ -50,7 +50,7 @@ jobs:

# Run Unit Test
- name: Run Unit Test
run: gradle test
run: ./gradlew test

# Upload Test Reports
- name: Upload Test Reports
Expand All @@ -61,7 +61,7 @@ jobs:

# Generate Code Coverage Report
- name: Generate code coverage report
run: gradle jacocoTestReport
run: ./gradlew jacocoTestReport

# Upload Code Coverage Report
- name: Upload code coverage report
Expand Down

0 comments on commit f104f9d

Please sign in to comment.