mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-02-07 11:42:55 +00:00
Fixed Formating Issues [skip ci]
This commit is contained in:
parent
ca1462cccb
commit
c08e54936f
1 changed files with 12 additions and 12 deletions
24
.github/workflows/prettier.yml
vendored
24
.github/workflows/prettier.yml
vendored
|
@ -2,25 +2,25 @@ name: Code Format Check
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches: [main]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main ]
|
branches: [main]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-format:
|
check-format:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '21'
|
node-version: '21'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --frozen-lockfile
|
run: yarn install --frozen-lockfile
|
||||||
|
|
||||||
- name: Check code format
|
- name: Check code format
|
||||||
run: yarn prettier --check --ignore-path .prettierignore .
|
run: yarn prettier --check --ignore-path .prettierignore .
|
||||||
|
|
Loading…
Reference in a new issue