Skip to content

Commit

Permalink
fix(ci): fix prettier
Browse files Browse the repository at this point in the history
fixed prettier for CI builds failing due to node 12.x
updated the github action setup-node to latest
  • Loading branch information
AhsanAyaz committed Aug 28, 2023
1 parent ac2baf8 commit e2b38f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
persist-credentials: false

- name: Setup Node.js 🔧
uses: actions/setup-node@v2
uses: actions/setup-node@v3.8.1
with:
node-version: 14.x
node-version: 16.x

- name: Update npm 🚀
run: npm install -g npm@latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
with:
persist-credentials: false

- uses: actions/setup-node@v2-beta
- uses: actions/setup-node@v3.8.1
with:
node-version: '12'
node-version: 16.x

- name: Install Prettier
run: npm install -g prettier
Expand Down

0 comments on commit e2b38f6

Please sign in to comment.