mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 00:53:37 +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:
|
||||
push:
|
||||
branches: [ main ]
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
check-format:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v4
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '21'
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '21'
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
|
||||
- name: Check code format
|
||||
run: yarn prettier --check --ignore-path .prettierignore .
|
||||
- name: Check code format
|
||||
run: yarn prettier --check --ignore-path .prettierignore .
|
||||
|
|
Loading…
Reference in a new issue