no nodes?
Some checks failed
Docker / run-tests (push) Failing after 55s
Docker / build-and-push-image (push) Has been skipped

This commit is contained in:
Troy 2025-05-05 23:58:19 +01:00
parent 5f8253096f
commit 1ba4e5341f
Signed by: troy
GPG key ID: DFC06C02ED3B4711
2 changed files with 13 additions and 16 deletions

View file

@ -15,7 +15,19 @@ permissions:
jobs: jobs:
run-tests: run-tests:
uses: ./.forgejo/workflows/test.yml runs-on: nixos-x86_64-linux
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "latest"
- name: Run npm clean install and build
run: |
npm ci
npm run build
build-and-push-image: build-and-push-image:
runs-on: nixos-x86_64-linux runs-on: nixos-x86_64-linux
needs: needs:

View file

@ -1,15 +0,0 @@
name: Test
on:
pull_request:
workflow_call:
permissions:
contents: read
jobs:
run-tests:
runs-on: nixos-x86_64-linux
steps:
- name: Checkout repository
uses: actions/checkout@v4