Bump version to 0.3.1 #236
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: "Code Lint Check" | |
on: [push, pull_request] | |
jobs: | |
quality: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- run: git submodule update --init | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install frontend dependencies | |
run: pnpm install | |
- name: Run Biome | |
run: pnpm run ui:check:ci |