don't show extension icon in upvars #439
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: Format code | |
on: [push, pull_request] | |
permissions: | |
contents: write | |
jobs: | |
run: | |
name: Format code | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "npm" | |
- name: Install | |
run: npm ci | |
- name: Prettier | |
run: npm run fmt | |
- name: Commit | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Format code using Prettier" | |
branch: ${{ github.head_ref }} |