github-notifier: Restore MAX_BODY_LENGTH and raise from 200 kB to 1 MiB #32
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: CI | |
| on: | |
| - push | |
| - pull_request | |
| # A workflow is made up of one or more jobs | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # Recent LTS | |
| - node: 20.x | |
| # Provided by Debian 12 Bookworm LTS | |
| - node: 18.x | |
| # Provided by Debian 11 Bullseye LTS | |
| - node: 12.x | |
| # Provided by Debian 10 Buster LTS | |
| - node: 10.x | |
| name: "Test Node.js ${{ matrix.node }} " | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm install | |
| - run: npm test |