Skip to content

Commit

Permalink
Tried to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Apr 9, 2024
1 parent b6aefd1 commit 73917da
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 18.x

- name: Install Dependencies
run: npm install
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v4
Expand All @@ -71,6 +71,9 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

- name: Run local tests
# npm downgrade to 6 (mainly for node.js 16) is needed because else testing fails
# after installing additional adapters
Expand Down Expand Up @@ -101,10 +104,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 18.x

- name: Extract the version and commit body from the tag
id: extract_release
Expand Down

0 comments on commit 73917da

Please sign in to comment.