Skip to content

Eunseo Layout 최종 수정 #678

Eunseo Layout 최종 수정

Eunseo Layout 최종 수정 #678

Workflow file for this run

name: Check Format
on:
push:
pull_request:
branches:
- master
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- uses: actions/setup-node@v3.8.1
with:
node-version: 18.x
- name: Install 🔧 # Install dependencies
run: |
npm install
- name: Check Format
run: |
npm run check-format