Skip to content

fix: 인증 관련 코드 수정, 토큰이 유효하지 않은 경우 대응 #128

fix: 인증 관련 코드 수정, 토큰이 유효하지 않은 경우 대응

fix: 인증 관련 코드 수정, 토큰이 유효하지 않은 경우 대응 #128

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16"]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install yarn
run: npm install -g yarn
- name: Install the project dependencies
run: yarn install
- name: Prettier check
run: yarn prettier
- name: Lint check
run: yarn lint
- name: Stylelint check
run: yarn lint:css
- name: Type check
run: yarn type-check