bump version to 0.0.27 #31
This file contains hidden or 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: Frontend CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "src/**" | |
| - "package.json" | |
| - "bun.lock" | |
| - "tsconfig*.json" | |
| - "vite.config.*" | |
| - "dprint.json" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "src/**" | |
| - "package.json" | |
| - "bun.lock" | |
| - "tsconfig*.json" | |
| - "vite.config.*" | |
| - "dprint.json" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| frontend: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install frontend dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Typecheck and build frontend | |
| run: bun run build | |
| - name: Install dprint | |
| run: curl -fsSL https://dprint.dev/install.sh | sh && echo "$HOME/.dprint/bin" >> $GITHUB_PATH | |
| - name: Check formatting | |
| run: dprint check |