feat: add librechat to revan (#733) #35
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: Checker ✅ | |
| on: | |
| schedule: | |
| - cron: "37 13 14 * *" | |
| push: | |
| paths: | |
| - "lib/**.toml" | |
| - "lib/**-schema.json" | |
| workflow_dispatch: | |
| jobs: | |
| flake-checker: | |
| name: Flake Lock Checker | |
| runs-on: ubuntu-slim | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: DeterminateSystems/determinate-nix-action@v3 | |
| with: | |
| extra-conf: | | |
| eval-cores = 0 | |
| - uses: DeterminateSystems/flakehub-cache-action@v3 | |
| - uses: DeterminateSystems/flake-checker-action@v12 | |
| toml-lint: | |
| name: TOML Registry Lint | |
| runs-on: ubuntu-slim | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: DeterminateSystems/determinate-nix-action@v3 | |
| - name: Validate registry schemas | |
| run: | | |
| nix shell nixpkgs#taplo --command taplo lint \ | |
| --schema "file://$(pwd)/lib/registry-systems-schema.json" \ | |
| lib/registry-systems.toml | |
| nix shell nixpkgs#taplo --command taplo lint \ | |
| --schema "file://$(pwd)/lib/registry-users-schema.json" \ | |
| lib/registry-users.toml |