Skip to content

chore(deps): update dependency @types/node to v18.19.33 #4417

chore(deps): update dependency @types/node to v18.19.33

chore(deps): update dependency @types/node to v18.19.33 #4417

Workflow file for this run

name: Code style
on:
push:
branches:
- '**'
jobs:
style-fix:
name: Run Prettier and Commit Changes
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.TAKARO_CI_APP_ID }}
private_key: ${{ secrets.TAKARO_CI_APP_PRIV_KEY }}
- name: Checkout code
uses: actions/checkout@v2
with:
token: ${{ steps.generate_token.outputs.token }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.18
cache: "npm"
- run: ./scripts/dev-init.sh
- name: Run Prettier
run: npm run test:style:fix
- name: Commit and push if changed
run: |
if git diff --quiet; then
echo "No changes to commit."
else
git config --global user.name 'takaro-ci-bot[bot]'
git config --global user.email '138661031+takaro-ci-bot[bot]@users.noreply.github.com'
git commit -am "fix: code style"
git push
fi