From fa45b5e56404a073c12ee9c5ca3abe672641ad20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Thu, 14 Nov 2024 14:21:42 +0000 Subject: [PATCH] removed ci-nym-api-tests.yml which was running outdated (and broken) tests (#5133) --- .github/workflows/ci-nym-api-tests.yml | 39 -------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/ci-nym-api-tests.yml diff --git a/.github/workflows/ci-nym-api-tests.yml b/.github/workflows/ci-nym-api-tests.yml deleted file mode 100644 index 5e992f26f3..0000000000 --- a/.github/workflows/ci-nym-api-tests.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: ci-nym-api-tests - -on: - workflow_dispatch: - push: - paths: - - "nym-api/**" - -defaults: - run: - working-directory: nym-api/tests - -jobs: - test: - name: nym-api tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: install yarn in root - run: cd ../.. && yarn install - - - name: Install npm - run: npm install - - - name: Node v18 - uses: actions/setup-node@v4 - with: - node-version: 18.1.0 - - - name: Install yarn - run: yarn install - - - name: Run yarn - run: yarn - - - name: Run tests - run: yarn test:sandbox - working-directory: nym-api/tests