Skip to content

Commit 8bfeec2

Browse files
committed
fix: stabilize cross-platform CI
1 parent 09959ba commit 8bfeec2

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/CI-CD.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ jobs:
5353
run: pnpm test:node
5454

5555
- name: Send code coverage results to Coveralls
56+
if: runner.os != 'macOS'
5657
uses: coverallsapp/github-action@v2
5758
with:
5859
github-token: ${{ secrets.GITHUB_TOKEN }}

test/specs/dereference-max-depth/dereference-max-depth.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describe("Dereference max depth", () => {
4545

4646
it("should apply max depth to reference chains", async () => {
4747
const parser = new $RefParser();
48-
await parser.resolve(createReferenceChain(5_000));
48+
await parser.resolve(createReferenceChain(1_001));
4949

5050
expect(() => parser.$refs.get("#/entry")).to.throw(/Maximum dereference depth \(500\)/);
5151
expect(() =>

0 commit comments

Comments
 (0)