From 4ed4a89690c65b98e89f0cfd153242729fb3e58b Mon Sep 17 00:00:00 2001 From: Valeri Karpov Date: Thu, 22 Jun 2023 09:33:37 -0400 Subject: [PATCH] chore: pin version of @types/json-schema because of install issues on node v4 and v6 --- .github/workflows/test.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2de23d4039d..f6a02695448 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - node: [4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16] + node: [8, 9, 10, 12, 14, 15, 16] name: Node ${{ matrix.node }} steps: - uses: actions/checkout@v2 @@ -18,14 +18,6 @@ jobs: with: node-version: ${{ matrix.node }} - - name: Upgrade Node <= 5 npm - run: npm install -g npm@3 - if: ${{ matrix.node <= 5 }} - - - name: Upgrade Node 7 npm - run: npm install -g npm@6 - if: ${{ matrix.node == 7 }} - - run: npm install - name: Setup