build: 🚀 release BiMap (#31) #66
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: Data Structures CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Verify formatting, linting, proper JSDoc checking | |
run: deno task verify | |
- name: Run tests with coverage | |
run: deno test --coverage=coverage | |
- name: Generate coverage report | |
# Add exclude patterns for files you want to ignore | |
run: | | |
deno coverage --lcov \ | |
--exclude="src/tests/" \ | |
--exclude="src/constants/" \ | |
--exclude="src/types/" \ | |
--exclude="src/errors/" \ | |
> coverage/coverage.lcov | |
- name: Upload coverage to CodeCov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage/coverage.lcov | |
fail_ci_if_error: true | |
publish: | |
needs: test | |
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Publish to JSR | |
run: deno publish |