Skip to content

chore(app): organize configs and data into dedicated directories #4

chore(app): organize configs and data into dedicated directories

chore(app): organize configs and data into dedicated directories #4

Workflow file for this run

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