chore: release v0.1.0 #5
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: Continous Integration | |
| on: | |
| - push | |
| jobs: | |
| lint: | |
| name: Typecheck, Lint & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup Dependencies | |
| uses: ./.github/composite-actions/setup | |
| - name: Run Lint All | |
| run: bun ci:check | |
| - uses: MeilCli/common-lint-reporter/transformer/eslint@v1.2.1 | |
| with: | |
| # your output path | |
| report_files: | | |
| lint_report.json | |
| - name: Unit Test | |
| run: bun ci:test | |
| - name: 'Report Coverage' | |
| # Set if: always() to also generate the report if tests are failing | |
| # Only works if you set `reportOnFailure: true` in your vite config as specified above | |
| if: always() | |
| uses: davelosert/vitest-coverage-report-action@v2 |