Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Docs: Document Node node-fetch keep-alive regression (@W-23158954@) #1657

Docs: Document Node node-fetch keep-alive regression (@W-23158954@)

Docs: Document Node node-fetch keep-alive regression (@W-23158954@) #1657

Workflow file for this run

name: tests # runs unit and integration tests
on:
push:
branches-ignore: [main]
workflow_dispatch:
jobs:
linux-tests:
strategy:
matrix:
node: [20, 22]
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-node${{ matrix.node }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
- run: npm install snyk --legacy-peer-deps
- run: npm run snyk:auth ${{ secrets.SNYK_TOKEN }}
- run: npm install --legacy-peer-deps
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}
- run: npm run build
- name: Unit tests
run: npm test
- run: cd testIntegration
- name: Integration tests
run: npm run test:ci
Morty Proxy This is a proxified and sanitized view of the page, visit original site.