Skip to content

Project Scaffolding (진행 중입니다. 완료되면 다시 정리할게요!) #3

Project Scaffolding (진행 중입니다. 완료되면 다시 정리할게요!)

Project Scaffolding (진행 중입니다. 완료되면 다시 정리할게요!) #3

Workflow file for this run

name: Lint Check
on: pull_request
jobs:
lint-check:
name: Lint Check
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install Dependencies
run: yarn install
- name: Run Lint
run: yarn lint