[FEAT] 사용자 정보 및 previous 컴포넌트 분리 #29
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: | |
branches: [ dev ] | |
pull_request: | |
branches: [ dev ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 20.11.1 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20.11.1' | |
cache: 'yarn' | |
cache-dependency-path: '**/.yarn/releases/*.cjs' | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Run tests | |
run: yarn test --passWithNoTests |