fix: 인증 관련 코드 수정, 토큰이 유효하지 않은 경우 대응 #128
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: 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 |