Skip to content

feat: 당겨서 새로고침시 새롭게 소식 데이터를 불러오는 기능 추가 #12

feat: 당겨서 새로고침시 새롭게 소식 데이터를 불러오는 기능 추가

feat: 당겨서 새로고침시 새롭게 소식 데이터를 불러오는 기능 추가 #12

Workflow file for this run

name: PR Built Test
on:
pull_request:
types: [opened, edited, reopened, ready_for_review]
jobs:
Build-Test:
runs-on: ubuntu-latest
steps:
- uses: pnpm/action-setup@v4
with:
version: 8
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}-build
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pnpm install
- name: Build project
run: pnpm build