fix: use PAT for permissions to push SubVerso tags in CI #11
Workflow file for this run
This file contains hidden or 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: Check Formatting of JS/CSS/HTML and Markdown | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Check formatting with prettier | |
| uses: creyD/prettier_action@v4.6 | |
| with: | |
| dry: true | |
| prettier_options: "--check ." | |
| prettier_version: 3.7.4 |