From bd818efbe5c8879128db9de0564a7fa5955c20c9 Mon Sep 17 00:00:00 2001 From: Bouillaguet Quentin Date: Fri, 14 Feb 2025 17:39:26 +0100 Subject: [PATCH] feat: disabling functional tests --- .github/workflows/integration.yml | 41 ++++++++++++++++--------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 81113b6ca0..b8d31981d3 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -133,28 +133,29 @@ jobs: name: Functional tests needs: build runs-on: ubuntu-latest - steps: + steps: | + echo "" # Use specific Node.js version - - uses: actions/checkout@v4 - - name: Use Node.js 22.x - uses: actions/setup-node@v4 - with: - node-version: 22.x - cache: 'npm' - - # Install packages - - name: Install packages - run: npm ci - - # Download artifact from build - - name: Download itowns bundle - uses: actions/download-artifact@v4 - with: - name: dist-itowns - - - name: Run functional tests - run: npm run test-functional + # - uses: actions/checkout@v4 + # - name: Use Node.js 22.x + # uses: actions/setup-node@v4 + # with: + # node-version: 22.x + # cache: 'npm' + + # # Install packages + # - name: Install packages + # run: npm ci + + # # Download artifact from build + # - name: Download itowns bundle + # uses: actions/download-artifact@v4 + # with: + # name: dist-itowns + + # - name: Run functional tests + # run: npm run test-functional # Publish NPM package