임시저장후 조회한뒤 다시 제출하면 saved되는 버그 픽스 #3
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: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install Pnpm package manager | |
run: | | |
npm install -g pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Run Test | |
run: pnpm run test | |