From e534241ea22e1a2c91e0983f0675d63e81a6a43b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20Alexander=20Str=C3=B8mseng?= Date: Sat, 13 Apr 2024 12:36:07 +0200 Subject: [PATCH] move CI/CD to selfhosted server --- .github/workflows/node.js.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index fcdd792..103204d 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -16,7 +16,7 @@ defaults: jobs: build: - runs-on: ubuntu-latest + runs-on: self-hosted strategy: matrix: @@ -34,7 +34,7 @@ jobs: - run: npm run build # Build the frontend lint: - runs-on: ubuntu-latest + runs-on: self-hosted strategy: matrix: @@ -52,7 +52,7 @@ jobs: - run: npm run lint # Run linter prettier: - runs-on: ubuntu-latest + runs-on: self-hosted strategy: matrix: @@ -71,7 +71,7 @@ jobs: test: timeout-minutes: 60 - runs-on: ubuntu-latest + runs-on: self-hosted steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4