Skip to content

Update dependency js-yaml to v4.1.1 [SECURITY] #38

Update dependency js-yaml to v4.1.1 [SECURITY]

Update dependency js-yaml to v4.1.1 [SECURITY] #38

Workflow file for this run

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