카카오 로그인 중 토큰 발급까지 완료한다. #10
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: Main_Test | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: install dependencies | |
run: pnpm install | |
- name: build | |
run: pnpm turbo run build | |
- name: run unit tests | |
run: pnpm turbo run test | |
- name: run integration tests | |
run: pnpm turbo run test:integ | |
- name: download playwright browsers | |
run: pnpm exec playwright install | |
working-directory: ./apps/client | |
- name: run E2E tests | |
run: pnpm turbo run test:e2e |