Skip to content

npm(deps-dev): bump vite-tsconfig-paths from 5.1.4 to 6.0.3 #38

npm(deps-dev): bump vite-tsconfig-paths from 5.1.4 to 6.0.3

npm(deps-dev): bump vite-tsconfig-paths from 5.1.4 to 6.0.3 #38

Workflow file for this run

# This GitHub Actions workflow runs two jobs:
#
# 1. `typecheck`: Check the typescript code
# 2. `format`: Formats the code using the Bun runtime.
# 3. `lint`: Checks the code for linting issues using the Bun runtime.
#
# The workflow checks out the code, sets up the Bun environment, and then runs the
# respective linting and formatting commands.
name: Beautify
on: ["push", "pull_request"]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v6
- name: Setup bun environment
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Typecheck the code
run: bun run check