diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dd07514..3c74b60 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,6 +13,7 @@ jobs: matrix: os: [macos-latest, windows-2019] node: [16.x, 18.x, 20.x, 22.x] + fail-fast: false runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 @@ -20,8 +21,8 @@ jobs: - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - cache: 'npm' - registry-url: 'https://registry.npmjs.org' + cache: "npm" + registry-url: "https://registry.npmjs.org" - name: Build with Node.js ${{ matrix.node }} on ${{ matrix.os }} run: node .github/scripts/libmongocrypt.mjs ${{ runner.os == 'Windows' && '--build' || '' }} @@ -37,6 +38,7 @@ jobs: matrix: linux_arch: [s390x, arm64, amd64] node: [16.x, 18.x, 20.x, 22.x] + fail-fast: false steps: - uses: actions/checkout@v4 diff --git a/.mocharc.json b/.mocharc.json index 33df4eb..13b5622 100644 --- a/.mocharc.json +++ b/.mocharc.json @@ -11,5 +11,6 @@ "recursive": true, "failZero": true, "reporter": "test/tools/mongodb_reporter.js", - "color": true -} + "color": true, + "timeout": 0 +} \ No newline at end of file