Skip to content

Commit

Permalink
build: build on node v18 (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Jan 24, 2023
1 parent 79daf94 commit 61226ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ concurrency:

env:
GIT_EMAIL: [email protected]
NODE_VERSION: 14 # needs to be in sync with other v14 below
NODE_VERSION: 18 # needs to be in sync with other v18 below
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
DRY_RUN: true

jobs:
test:
name: ${{ matrix.node-version == 14 && format('test ({0})', matrix.os) || format('test ({0}, node-{1})', matrix.os, matrix.node-version) }}
name: ${{ matrix.node-version == 18 && format('test ({0})', matrix.os) || format('test ({0}, node-{1})', matrix.os, matrix.node-version) }}
runs-on: ${{ matrix.os }}

# tests shouldn't need more time
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Codecov
uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1
if: always() && env.coverage == 'true'
if: env.coverage == 'true'

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 61226ed

Please sign in to comment.