Fix: memory leak with when using Http(s)Agent keepAlive=true #505
Workflow file for this run
This file contains 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 | |
concurrency: | |
cancel-in-progress: true | |
group: 'node-js-${{ github.ref_name }}' | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/lint | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/build | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/test | |
integration: | |
name: Integration tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
node-version: [ | |
16, | |
# Deal with unhandled promise rejection in integration test: | |
# ERROR [karma-server]: Error: error:0308010C:digital envelope routines::unsupported | |
18, | |
] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/test-integration | |
with: | |
node-version: ${{ matrix.node-version }} |