Skip to content

feat(eslint-config): enable linting with type information #164

feat(eslint-config): enable linting with type information

feat(eslint-config): enable linting with type information #164

Workflow file for this run

name: ci-sentry
on:
push:
branches: [main]
paths:
- 'packages/sentry/**'
pull_request:
branches: ['*']
paths:
- 'packages/sentry/**'
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: yarn workspaces focus hono-middleware @hono/sentry
- run: yarn workspace @hono/sentry build
- run: yarn workspace @hono/sentry publint
- run: yarn workspace @hono/sentry typecheck
- run: yarn eslint packages/sentry
- run: yarn test --coverage --project @hono/sentry
- uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
directory: ./coverage
flags: sentry
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}