Skip to content

Update dependencies #114

Update dependencies

Update dependencies #114

Workflow file for this run

name: Test
on:
push:
branches: [ "**" ]
pull_request:
jobs:
test:
# Only run on PRs if the source branch is on someone else's repo
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: cd web && bun run lint
- run: cd web && bun run check
- run: cd web && bun run test
- run: cd web-extension && bun run lint