This repository was archived by the owner on Jun 23, 2026. It is now read-only.
feat: simplify versioning with incremental build numbers #26
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: Lint Check | |
| on: | |
| push: | |
| branches: [dev, beta] | |
| pull_request: | |
| branches: [dev, beta] | |
| jobs: | |
| lint-backend: | |
| name: 🦀 Lint Rust (Clippy) | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: encryptx-backend | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - name: Run Clippy | |
| run: cargo clippy --all-targets --all-features -- -D warnings | |
| lint-frontend: | |
| name: 💅 Lint Frontend (ESLint) | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: encryptx-frontend | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run ESLint | |
| run: pnpm lint |