Update dependency js-yaml to v4.1.1 [SECURITY] #38
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: 'verify' | |
| on: # rebuild any PRs and main branch changes | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - 'releases/*' | |
| jobs: | |
| build: # make sure build/ci work properly | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/[email protected] | |
| with: | |
| node-version: 16.x | |
| - run: npm ci | |
| - run: npm run all | |
| - run: | | |
| npm run lint -- --fix | |
| if [ "$(git diff | wc -l)" -gt "0" ]; then | |
| echo "Detected uncommitted changes. See status below:" | |
| git diff | |
| exit 1 | |
| fi |