From fb0a18cb879a10e96248b46d83555c2bbcf9e58b Mon Sep 17 00:00:00 2001 From: THOLOT DECHENE Matthieu Date: Fri, 21 Nov 2025 22:18:09 +0000 Subject: [PATCH] Actualiser .github/workflows/ci.yml --- .github/workflows/ci.yml | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f28e3b..7ff0896 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,24 +1,14 @@ -name: CI +name: test-ci-simple on: push: - branches: - - main - - develop - pull_request: jobs: - build: - runs-on: ubuntu-latest + test: + runs-on: self-hosted + steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'npm' - - name: Install dependencies - run: npm ci - - name: Run unit tests - run: npm test -- --runInBand - - name: Run e2e tests - run: npm run test:e2e -- --runInBand + - name: Just echo + run: | + echo "Runner OK" + uname -a