[ATR-601] fix: 페이지네이션이 정상적으로 동장하지 않는 현상 수정 #168
Workflow file for this run
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
name: dev pull request | |
on: | |
pull_request: | |
types: [opened, edited, synchronize] | |
branches: | |
- dev | |
jobs: | |
dev-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Github Repository 파일 불러오기 | |
uses: actions/checkout@v4 | |
- name: JDK v21 설치 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: application.yml 파일 만들기 | |
run: echo '${{ secrets.APPLICATION_PROPERTIES }}' > ./src/main/resources/application.yml | |
- name: application-test.yml 파일 만들기 | |
run: echo '${{ secrets.APPLICATION_TEST_PROPERTIES }}' > ./src/main/resources/application-test.yml | |
- name: credentials.json 파일 만들기 | |
run: echo '${{ secrets.CREDENTIAL_JSON }}' > ./src/main/resources/credentials.json | |
- name: 빌드하기 및 테스트 하기 | |
run: ./gradlew clean build |