ui/.forgejo/workflows/dependency-builds.yml
Rasensprenger 95630a8887
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
Dependency builds / Build & Lint (pull_request) Failing after 48s
chore(deps): update https://data.forgejo.org/actions/checkout action to v7
2026-08-09 23:01:07 +02:00

23 lines
618 B
YAML

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@v7
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