chore(deps): bump axios from 0.26.1 to 1.6.0 #77
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: pull_request | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: 체크아웃 | |
uses: actions/checkout@v3 | |
- name: 노드 셋업 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: 캐시 체크 | |
uses: actions/cache@v3 | |
with: | |
path: ./.yarn/cache | |
key: yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: 의존성 설치 | |
run: yarn install --immutable | |
- name: 린트 실행 | |
run: yarn lint | |
e2e-test: | |
name: E2E-Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: 체크아웃 | |
uses: actions/checkout@v3 | |
- name: 노드 셋업 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: 캐시 체크 | |
uses: actions/cache@v3 | |
with: | |
path: ./.yarn/cache | |
key: yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: E2E 테스트 실행 | |
uses: cypress-io/github-action@v2 | |
with: | |
install-command: yarn install --immutable | |
build: yarn build | |
start: yarn start | |
command: yarn run test:e2e:run | |
unit-test: | |
name: Unit-Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: 체크아웃 | |
uses: actions/checkout@v3 | |
- name: 노드 셋업 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: 캐시 체크 | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: ./.yarn/cache | |
key: yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: 의존성 설치 | |
run: yarn install --immutable | |
- name: 유닛 테스트 실행 | |
run: yarn test:unit |