Merge pull request #228 from tukcom2023CD/BE/feat/#227 #279
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 workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
name: Build Project (for CI) | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
permissions: | |
contents: read | |
jobs: | |
build-backend: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./backend | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Generate Environment Variables File | |
run: | | |
echo "DOCKER_ID=$DOCKER_ID" >> gradle.properties | |
echo "DOCKER_IMAGE_NAME=$DOCKER_IMAGE_NAME" >> gradle.properties | |
echo "DOCKER_PASSWORD=$DOCKER_PASSWORD" >> gradle.properties | |
env: | |
DOCKER_ID: ${{ secrets.DOCKER_ID }} | |
DOCKER_IMAGE_NAME: ${{ secrets.DOCKER_IMAGE_NAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew build -x test | |
build-frontend: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18] | |
defaults: | |
run: | |
working-directory: ./frontend | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Run test | |
run: | | |
npm install --force | |
npm run build | |
env: | |
CI: true |