feat(preview): proxy Labelary through Rust, tighten desktop CSP #793
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| branches: [main, prod] | |
| push: | |
| branches: [main, prod] | |
| jobs: | |
| lint-test-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm licenses:check | |
| - uses: EmbarkStudios/cargo-deny-action@v2 | |
| with: | |
| command: check licenses advisories | |
| manifest-path: ./src-tauri/Cargo.toml | |
| - run: pnpm attribution:check | |
| - run: pnpm coverage:check | |
| - run: pnpm lint | |
| - run: pnpm test | |
| - run: pnpm build |