diff --git a/.github/workflows/clarinet.yml b/.github/workflows/clarinet.yml index 37eb9ec..1fe534f 100644 --- a/.github/workflows/clarinet.yml +++ b/.github/workflows/clarinet.yml @@ -23,10 +23,14 @@ jobs: uses: docker://hirosystems/clarinet:latest with: args: check - - name: "Execute unit tests" - uses: docker://hirosystems/clarinet:latest + - name: "Setup Node.js" + uses: actions/setup-node@v4 with: - args: test --coverage --manifest-path=./Clarinet.toml + node-version: "18.x" + - name: "Prep CI" + run: npm ci + - name: "Execute unit tests" + run: npm run test:report - name: "Upload code coverage" uses: codecov/codecov-action@v3 with: