This repository was archived by the owner on Dec 27, 2025. It is now read-only.
revert: restore original Nix wrapper script #55
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| env: | |
| DENO_VERSION: 2.x | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: ${{ env.DENO_VERSION }} | |
| - run: deno fmt --check | |
| - run: deno lint | |
| - run: deno task check | |
| - run: | | |
| deno task update-lock | |
| diff --exit-code || echo "deno.lock is out of date. Please run 'deno task update-lock' and commit the changes." | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: ${{ env.DENO_VERSION }} | |
| - run: deno task test:coverage | |
| timeout-minutes: 5 | |
| - run: | | |
| deno task coverage --lcov > coverage.lcov | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: ./coverage.lcov | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: jsr-probitas/cli |