Bump js-yaml from 3.14.1 to 3.14.2 in the npm_and_yarn group across 1 directory #215
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: set node-version | |
| uses: actions/setup-node@v4 | |
| with: | |
| registry-url: 'https://registry.npmjs.org/' | |
| node-version-file: 'package.json' | |
| - name: Build | |
| run: make build | |
| - name: Prettier | |
| run: make prettier | |
| - name: fail if files changed | |
| run: | | |
| if ! git diff --quiet --exit-code ; then | |
| echo "Please run 'make build' and 'make prettier' locally and commit the changes." | |
| exit 1 | |
| fi | |
| - name: Test | |
| run: make test |