Skip to content

chore: Use Bun instead of yarn as a package manager #33

chore: Use Bun instead of yarn as a package manager

chore: Use Bun instead of yarn as a package manager #33

Workflow file for this run

name: ci-qwik-city
on:
push:
branches: [main]
paths:
- 'packages/qwik-city/**'
pull_request:
branches: ['*']
paths:
- 'packages/qwik-city/**'
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --filter './' --filter './packages/qwik-city'
- run: bun --filter './packages/qwik-city' build
- run: bun --filter './packages/qwik-city' publint
- run: bun --filter './packages/qwik-city' typecheck
- run: bun eslint packages/qwik-city
# - run: bun vitest --coverage --project @hono/qwik-city
# - uses: codecov/codecov-action@v5
# with:
# fail_ci_if_error: true
# directory: ./coverage
# flags: qwik-city
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}