Skip to content

chore(deps): update dependency @types/node to v20.17.6 #373

chore(deps): update dependency @types/node to v20.17.6

chore(deps): update dependency @types/node to v20.17.6 #373

Workflow file for this run

name: Prettier
on:
pull_request:
branches: [ "main", "develop" ]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
ref: ${{ github.head_ref || github.ref }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Run Prettier
run: yarn prettier
- name: Commit changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add -A
git commit -m 'prettier' || echo "No changes to commit"
git push origin HEAD:${{ github.head_ref || github.ref }}