From 7bbf2a1abd711475807708c4b814866e93aa00d6 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Fri, 14 Jul 2023 16:22:15 -0400 Subject: [PATCH] bump node to 16, remove extraneous stuff in ci --- .github/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9222702..76cddee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,8 +23,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: [3.9] - node-version: [14.x] - event-name: [push] + node-version: [16.x] steps: - uses: actions/checkout@v3 @@ -61,12 +60,12 @@ jobs: - name: Checks run: | make checks - if: ${{ github.event_name == matrix.event-name || matrix.os == 'ubuntu-latest' }} + if: ${{ matrix.os == 'ubuntu-latest' }} - name: Test run: | make tests - if: ${{ github.event_name == matrix.event-name || matrix.os == 'ubuntu-latest' }} + if: ${{ matrix.os == 'ubuntu-latest' }} - name: Upload test results uses: actions/upload-artifact@v3