no nodes?
This commit is contained in:
parent
5f8253096f
commit
1ba4e5341f
2 changed files with 13 additions and 16 deletions
|
@ -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:
|
||||||
|
|
|
@ -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
|
|
Loading…
Add table
Add a link
Reference in a new issue