fix(deps): update all non-major dependencies #3232
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
Linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Uses Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: 1.2.1 | |
- name: Install Dependencies | |
run: bun install | |
- name: Run Prettier | |
run: bun pretty | |
Building: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Uses Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: 1.2.1 | |
- name: Install Dependencies | |
run: bun install | |
- name: TypeCheck | |
run: bun typecheck |