Skip to content

Commit

Permalink
fix: compatibility with chai v5 (#21)
Browse files Browse the repository at this point in the history
* fix: compatibility with chai v5

* test: without ts-node
  • Loading branch information
tpluscode authored Sep 1, 2024
1 parent c0b3d0e commit b48aa68
Show file tree
Hide file tree
Showing 10 changed files with 1,130 additions and 104 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,24 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm test

chai-v5-smoke-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm run -w test/chai-v5 test
continue-on-error: true
Loading

0 comments on commit b48aa68

Please sign in to comment.