build: typescript project references #107
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: ci-firebase-auth | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'packages/firebase-auth/**' | |
| pull_request: | |
| branches: ['*'] | |
| paths: | |
| - 'packages/firebase-auth/**' | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18.x | |
| - run: yarn workspaces focus hono-middleware @hono/firebase-auth | |
| - run: yarn workspace @hono/firebase-auth build | |
| - run: yarn workspace @hono/firebase-auth publint | |
| - run: yarn workspace @hono/firebase-auth typecheck | |
| - run: yarn test --coverage --project @hono/firebase-auth | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| fail_ci_if_error: true | |
| directory: ./coverage | |
| flags: firebase-auth | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |