Skip to content

fix: increase the socket timeout value (#526) #3689

fix: increase the socket timeout value (#526)

fix: increase the socket timeout value (#526) #3689

Workflow file for this run

name: test
on:
push:
branches:
- main
- "renovate/**"
pull_request:
jobs:
test:
name: Node.js ${{ matrix.os }} ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test:ci