build(deps-dev): bump js-yaml from 4.1.0 to 4.1.1 #88
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 | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| branches: | |
| - master | |
| env: | |
| CI: true | |
| jobs: | |
| run: | |
| name: Node ${{ matrix.node }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [16, 18, 20] | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| - name: Set Node.js version | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Run tests | |
| run: npm run test | |
| - name: Run Coveralls | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: "${{ secrets.GITHUB_TOKEN }}" |