diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 97b9e59..98910a8 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -5,6 +5,7 @@ on: push: branches: ['**'] pull_request: + workflow_dispatch: jobs: build: @@ -19,7 +20,11 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: '22.18' # Spécifie la version de Node.js + node-version: '20' # Spécifie la version de Node.js + + # Version node installer + - name: Show Node version (debug) + run: node -v # 3. Installation des dépendances - name: Install dependencies diff --git a/.gitea/workflows/ping.yaml b/.gitea/workflows/ping.yaml deleted file mode 100644 index f2b1cf8..0000000 --- a/.gitea/workflows/ping.yaml +++ /dev/null @@ -1,14 +0,0 @@ -name: Ping - -on: - push: - branches: ['**'] - pull_request: - workflow_dispatch: # bouton "Run workflow" si ta version de Gitea le supporte - -jobs: - show: - runs-on: ubuntu-latest # ou k3s (voir Étape C) - steps: - - run: echo "It works on $RUNNER_OS" - - run: echo "labels: ${{ toJson(runner.labels) }}"