Skip to content

Feat: 스터디 및 자기소개서 API 연결 #85

Feat: 스터디 및 자기소개서 API 연결

Feat: 스터디 및 자기소개서 API 연결 #85

Workflow file for this run

name: Lint Check
on:
pull_request:
branches:
- develop
jobs:
run-lint:
name: Run Lint
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4.0.0
with:
node-version: '18.x'
- name: Install Dependencies
run: npm install
- name: Run Lint
run: npm run lint