Merge pull request #81 from vkumbhar94/dev-vk-readyamlall #335
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: CI | |
| on: | |
| pull_request: | |
| paths: | |
| - deno.json | |
| - deno.lock | |
| - '**/*.ts' | |
| - fixtures | |
| - .github/workflows/ci.yml | |
| push: | |
| branches: main | |
| paths: | |
| - deno.json | |
| - deno.lock | |
| - '**/*.ts' | |
| - fixtures | |
| - .github/workflows/ci.yml | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v1 | |
| - run: deno cache mod.ts | |
| - run: deno task test | |
| --coverage=cov_profile | |
| --no-check # ⬆signal∶noise & ∵ we have `jobs.typecheck` | |
| - run: deno coverage cov_profile --lcov --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 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: coverallsapp/github-action@v2 | |
| with: | |
| parallel-finished: true | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v1 | |
| - run: deno lint | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v1 | |
| - run: deno task typecheck |