π fix: nginx proxy_read_timeout 1μκ°μΌλ‘ μ€μ #191
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: BE Test | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
# 1. νμ¬ PR λΈλμΉλ‘ 체ν¬μμ νκΈ° | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
# 2. Node.js νκ²½ μ€μ | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
# 3. μμ‘΄μ± μ€μΉ | |
- name: Install dependencies | |
working-directory: ./server | |
run: npm install | |
# 4. ν΅ν© ν μ€νΈ μ€ν | |
- name: Run Integration Test | |
working-directory: ./server | |
run: npm run test | |
# TODO: ν μ€νΈ 컀λ²λ¦¬μ§, νΉμ ν μ€νΈ λ‘κ·Έ 컀λ©νΈ μμ± λ‘μ§ μΆκ°νκΈ° |