Bump prettier from 2.8.8 to 3.0.3 #79
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: Run Actionlint | |
on: | |
pull_request: | |
branches: main | |
jobs: | |
run-actionlint: | |
runs-on: ubuntu-latest | |
permissions: | |
# needed for the checkout action | |
contents: read | |
# needed to annotate the files in a pull request with comments | |
pull-requests: write | |
steps: | |
# checkout the source code to analyze | |
- uses: actions/checkout@v3 # v3 | |
# run the actionlinter | |
- uses: devops-actions/actionlint@c0ee017f8abef55d843a647cd737b87a1976eb69 # v0.1.1 | |
# trying to find a way to fail the workflow, but not block the PR, so far no luck with required workflows | |
#continue-on-error: true | |
#- if: failure() | |
# run: echo "here" |