chore(app): organize configs and data into dedicated directories #4
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: Test aleph.wiki | |
| on: | |
| push: | |
| paths: | |
| - 'app/**' | |
| - '.github/workflows/test-app.yml' | |
| pull_request: | |
| paths: | |
| - 'app/**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v27 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - name: Install dependencies | |
| working-directory: app | |
| run: nix develop --command bun install | |
| - name: Run tests | |
| working-directory: app | |
| run: nix develop --command bun test |