Skip to content

v1.1.0 Develop - 마이포즈 데이터 갯수, 포즈피드 스켈레톤 사이즈 #23

v1.1.0 Develop - 마이포즈 데이터 갯수, 포즈피드 스켈레톤 사이즈

v1.1.0 Develop - 마이포즈 데이터 갯수, 포즈피드 스켈레톤 사이즈 #23

Workflow file for this run

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