Bump js-yaml from 3.14.1 to 3.14.2 in the npm_and_yarn group across 1 directory #470
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: Continuous Integration | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| lint_and_test: | |
| name: Run linter and tests | |
| runs-on: ubuntu-latest | |
| env: | |
| CI: true | |
| NODE_ENV: test | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version-file: .node-version | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm test |