Bump braces from 3.0.2 to 3.0.3 in /action #61
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: linter | |
on: | |
# Execute on every push to any branch | |
push: | |
branches: | |
- "**" | |
# Execute on every pull request to the master branch | |
pull_request_target: | |
branches: | |
- main | |
jobs: | |
linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up node | |
uses: actions/setup-node@v1 | |
- run: npm install -g dockerfilelint [email protected] | |
- run: dockerfilelint ./**/Docker* | |
- run: prettier --check . |