Skip to content

Commit

Permalink
node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
styfle committed May 16, 2024
1 parent f1656c7 commit d84d81d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [14]
node: [18]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Print Node Version
Expand All @@ -36,7 +36,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: yarn test-coverage
- name: Release
if: matrix.os == 'ubuntu-latest' && matrix.node == 14 && github.event_name == 'push' && github.ref == 'refs/heads/main'
if: matrix.os == 'ubuntu-latest' && matrix.node == 18 && github.event_name == 'push' && github.ref == 'refs/heads/main'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }}
Expand Down

0 comments on commit d84d81d

Please sign in to comment.