GETP-205 feature : 프로젝트 상세 조회 페이지 구현 및 API 연동 #6
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: Run e2e Test | |
on: | |
pull_request: | |
branches: ["main", "develop", "release"] | |
workflow_dispatch: | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Setup Environment Variables | |
run: | | |
touch .env | |
echo VITE_API_BASE_URL=${{secrets.VITE_API_BASE_URL}} >> .env | |
- name: Build | |
run: npm run build | |
- name: Run e2e Tests | |
run: npm run test:e2e-ci |