v1.1.0 Develop - 마이포즈 데이터 갯수, 포즈피드 스켈레톤 사이즈 #24
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: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
name: Checkout repository | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ github.workspace }}/.next/cache | |
key: ${{ runner.os }}-nextjs-${{ hashFiles('yarn.lock') }} | |
restore-keys: ${{ runner.os }}-nextjs-${{ hashFiles('yarn.lock') }}- | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Check typescript | |
run: yarn run type:check | |
- name: Check eslint | |
run: yarn run lint |