Skip to content

Commit

Permalink
FRIDGE-814 remove node 16 github actions, make it use npm@10
Browse files Browse the repository at this point in the history
  • Loading branch information
makserik committed Mar 19, 2024
1 parent ebe432c commit 2ca5371
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node-version: [ lts/-2, lts/-1, lts/*]
node-version: [ lts/-1, lts/*]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Update npm to 8.x
- name: Update npm to 10.x
run: |
npm i -g npm@8
npm i -g npm@10
- name: npm install, build, and test
run: |
npm install
Expand Down

0 comments on commit 2ca5371

Please sign in to comment.