BREAKING: exit on all types of configuration errors in watch mode (#… #295
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: Node.js CI | |
| on: | |
| push: | |
| branches: master | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| node: [22, 24, 26] | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - run: git config --global core.autocrlf input | |
| - uses: actions/checkout@v7 | |
| - name: Use Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm install | |
| - run: npm run ci |