Bump js-yaml from 3.14.1 to 3.14.2 #122
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: Build, lint, test | |
| on: [ push, pull_request ] | |
| jobs: | |
| build-lint: | |
| name: Build & lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: latest | |
| - run: npm ci | |
| - name: Compile & lint | |
| run: npm run lint-all | |
| test: | |
| name: Test | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Test on min version from package.json and on latest to see if no Node changes broke it | |
| node-version: [ latest, 16.7.0 ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| - name: Test | |
| run: npm test |