build(deps): bump js-yaml from 4.1.1 to 4.3.0 #1293
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: Test | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: push | |
| jobs: | |
| npm: | |
| name: Test the package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build types | |
| run: npm run build:types | |
| - name: Build | |
| run: npm run build | |
| - name: Linting | |
| run: npx eslint | |
| - name: Test | |
| run: npm run test --coverage |