Skip to content

Fix: 서버 요청에 유저 인증 토큰값을 넣어 보내기 위해 axios -> authAPI 로 변경 #206

Fix: 서버 요청에 유저 인증 토큰값을 넣어 보내기 위해 axios -> authAPI 로 변경

Fix: 서버 요청에 유저 인증 토큰값을 넣어 보내기 위해 axios -> authAPI 로 변경 #206

Workflow file for this run

name: CI Workflow
on:
push:
branches:
- dev
pull_request:
branches:
- '**'
jobs:
docker:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Start docker container
run: docker-compose -f "docker-compose.yml" up -d --build
- name: Stop containers
if: always()
run: docker-compose -f "docker-compose.yml" down