Skip to content

Commit

Permalink
Merge branch 'fix_branch' of https://github.com/SSShogunn/To-Do-List
Browse files Browse the repository at this point in the history
…into fix_branch

Fix the eslint issue
  • Loading branch information
SSShogunn committed Oct 12, 2024
2 parents 271c2e9 + 6d256da commit 9c9964e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Format

on:
pull_request:
branches:
- main

jobs:
format:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16' # Use the Node.js version your project requires

- name: Install dependencies
run: npm install

- name: Run Prettier to check formatting
run: npm run prettier -- --check
continue-on-error: false # Fail the workflow if formatting issues are found
File renamed without changes.

0 comments on commit 9c9964e

Please sign in to comment.