Skip to content

추가 변경사항 합병 #6

추가 변경사항 합병

추가 변경사항 합병 #6

Workflow file for this run

name: ESLint test
on:
pull_request:
branches:
- main
- develop
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Pnpm package manager
run: |
npm install -g pnpm
- name: Install Dependencies
run: pnpm install
- name: Lint Code
run: pnpm lint