feat(deps): add dep build workflow
All checks were successful
/ deploy-and-package (push) Successful in 1m19s

This commit is contained in:
Alois 2026-08-09 22:34:19 +02:00
commit 7194ba72fd
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
5 changed files with 110 additions and 89 deletions

View file

@ -0,0 +1,23 @@
name: Dependency builds
on:
pull_request:
env:
NIX_CONFIG: experimental-features = nix-command flakes
FORGEJO_TOKEN: ""
GITHUB_TOKEN: ""
jobs:
check:
if: ${{ github.actor == 'rasensprenger' }}
name: Build & Lint
runs-on: nixos
steps:
- run: nix profile add nixpkgs#nodejs_24
- uses: https://data.forgejo.org/actions/checkout@v4
with:
persist-credentials: false
- run: nix develop .#electron --command pnpm install --frozen-lockfile
- run: nix develop .#electron --command pnpm run lint
- run: nix develop .#electron --command pnpm run build