chore(deps): update dependencies #284
Workflow file for this run
This file contains 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 | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version-file: package.json | |
- name: Install Dependencies | |
run: bun install | |
- name: Run Prettier | |
run: bun format-check | |
- name: Lint | |
run: bun lint | |
- name: Type Check | |
run: bun tsc | |
- name: Unit Tests | |
run: bun unit | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: adopt | |
java-version: "17" | |
- name: Integration Test | |
run: bun integration | |
- name: Build Docs | |
run: bun docs:build |