Allow zsh shellcode to be reentrant #1106
This file contains 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: ci | |
on: | |
pull_request: | |
paths: | |
- deno.jsonc | |
- '**/*.ts' | |
- .github/workflows/ci.yml | |
workflow_call: | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
steps: | |
- run: echo 'TMPDIR=/tmp' >> $GITHUB_ENV | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v1 # using ourself to install deno could compromise the tests | |
- run: deno cache ./entrypoint.ts | |
- run: deno task test --coverage=cov_profile | |
- run: deno coverage cov_profile --lcov --exclude=tests/ --output=cov_profile.lcov | |
- uses: coverallsapp/github-action@v2 | |
with: | |
path-to-lcov: cov_profile.lcov | |
parallel: true | |
flag-name: ${{ matrix.os }} | |
upload-coverage: | |
needs: tests | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: coverallsapp/github-action@v2 | |
with: | |
parallel-finished: true |