From 829402b7e368ad4f09e7df2ac4d20a97f7b7c890 Mon Sep 17 00:00:00 2001 From: attiasas Date: Mon, 8 Jul 2024 16:27:59 +0300 Subject: [PATCH] Remove node 14 tests --- .github/workflows/test.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6776dcfd..65e62897 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,12 +11,11 @@ on: jobs: test: if: (github.event_name == 'schedule' && github.repository_owner == 'jfrog') || github.event_name == 'push' || (github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'safe to test')) - name: ${{ matrix.os }}, node ${{ matrix.node }} + name: ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - node: [14, 16] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v3 @@ -57,12 +56,6 @@ jobs: - name: Install JFrog CLI for connectionManager tests run: curl -fL https://install-cli.jfrog.io | sh && jf -v - - name: Setup NodeJS for tests - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node }} - check-latest: true - - name: Tests on macOS, Windows env: JFROG_IDE_PLATFORM_URL: ${{ secrets.PLATFORM_URL }}