⬆️ Bump vite from 4.4.7 to 4.4.11 #471
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checker | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: '19' | |
- name: Install dependencies | |
run: npm install --global pnpm && pnpm install --frozen-lockfile | |
- name: Run the formatter | |
run: npm run format | |
- name: Run the linter | |
run: npm run lint --fix | |
- name: Create a commit and push the changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
if: always() | |
with: | |
commit_message: '🚨 Fixed formatter issues' | |
commit_user_name: Formatter Bot |