Skip to content

hotlink-what-to-know-to-be-a-better-engineer #31

hotlink-what-to-know-to-be-a-better-engineer

hotlink-what-to-know-to-be-a-better-engineer #31

Workflow file for this run

name: Autofix and prettify
on:
pull_request:
branches:
- main
jobs:
autofix-and-prettify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20.9.0"
- name: Autofix and prettify
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm install
npm run lint:fix
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[refactored] prettify files"