Skip to content

Commit

Permalink
Update main.yml to use yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankreedX authored Feb 28, 2024
1 parent 6031aa3 commit 7c95d6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '21' # Use whatever node version your project requires
node-version: "21" # Use whatever node version your project requires
- name: Install Prettier
run: npm install --save-dev prettier
run: yarn add prettier --dev
- name: Check code formatting
run: npx prettier --check .
run: yarn pretty --check

0 comments on commit 7c95d6b

Please sign in to comment.