Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .github/workflows/release-on-push-to-mainline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -20,14 +20,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

# 14.x fails with "npm ERR! Cannot read property '@commitlint/config-conventional' of undefined"
# when running `npm ci` due to the new package-lock.json format. Run `npm i` instead
- name: Install (14.x)
if: matrix.node-version == '14.x'
run: npm i

- name: Install
if: matrix.node-version != '14.x'
run: npm ci

- name: Test
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ examples/nextjs
typescript-out
.build
.serverless
.idea
Loading