Skip to content

Commit

Permalink
Merge pull request #95 from timkpaine/tkp/ci
Browse files Browse the repository at this point in the history
bump node to 16, remove extraneous stuff in ci
  • Loading branch information
timkpaine authored Jul 14, 2023
2 parents fa5b8f3 + 7bbf2a1 commit 26e55b4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 26e55b4

Please sign in to comment.