Skip to content

Chore(deps-dev): bump @babel/traverse from 7.22.8 to 7.24.7 #56

Chore(deps-dev): bump @babel/traverse from 7.22.8 to 7.24.7

Chore(deps-dev): bump @babel/traverse from 7.22.8 to 7.24.7 #56

Workflow file for this run

name: format
on:
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: install packages and run format
run: |
npm ci
npm run format
- name: commit style change
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "style: the code has been formatted!"
branch: ${{ github.head_ref }}