Switch back to main tauri-action now that fix is upstream #248
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: "Code Lint Check" | |
on: [push, pull_request] | |
jobs: | |
quality: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git submodule update --init | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- name: Install frontend dependencies | |
run: pnpm install | |
- name: Run Biome | |
run: pnpm run ui:check:ci |