Remove ebay from the list of E2E tests due to "incorrect header check… #1792
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: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '13 2 * * *' | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: | |
| - 20 | |
| - 22 | |
| - 24 | |
| - current | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| include: | |
| - node-version: 24 | |
| os: macos-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm i | |
| - run: npm test | |
| - run: npm run eslint | |
| if: ${{ matrix.node-version == '24' && matrix.os == 'ubuntu-latest' }} | |
| - name: Coveralls | |
| if: ${{ matrix.node-version == '24' && matrix.os == 'ubuntu-latest' }} | |
| uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Publish Qlty code coverage | |
| if: ${{ matrix.node-version == '24' && matrix.os == 'ubuntu-latest' }} | |
| uses: qltysh/qlty-action/coverage@v2 | |
| with: | |
| token: ${{ secrets.QLTY_COVERAGE_TOKEN }} | |
| files: coverage/lcov.info |