Update workflows
This commit is contained in:
parent
b19cd750a3
commit
dcc9be6db7
1 changed files with 21 additions and 0 deletions
21
.forgejo/workflows/dependency-builds.yml
Normal file
21
.forgejo/workflows/dependency-builds.yml
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
name: Dependency builds
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
env:
|
||||||
|
FORGEJO_TOKEN: ""
|
||||||
|
GITHUB_TOKEN: ""
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
if: ${{ github.actor == 'rasensprenger' }}
|
||||||
|
name: Build & Lint
|
||||||
|
runs-on: nixos
|
||||||
|
steps:
|
||||||
|
- uses: https://data.forgejo.org/actions/checkout@v4
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
- run: nix develop .#default --command pnpm install --frozen-lockfile
|
||||||
|
- run: nix develop .#default --command pnpm run lint
|
||||||
|
- run: nix develop .#default --command pnpm run build
|
||||||
Loading…
Reference in a new issue