Skip to content

Commit

Permalink
chore(deps): drop node 16 for 18
Browse files Browse the repository at this point in the history
  • Loading branch information
borisdamevin committed Feb 19, 2024
1 parent 44bb9d7 commit 0c39530
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:

strategy:
matrix:
node-version: [ 16.x, 18.x ]
node-version: [ 18.x, 20.x ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand All @@ -30,7 +30,7 @@ jobs:
run: npm run test

- name: Test Reporter
uses: dorny/test-reporter@v1.6.0
uses: dorny/test-reporter@v1.8.0
with:
name: JEST Tests
path: junit.xml
Expand All @@ -42,8 +42,8 @@ jobs:
if: ${{ github.ref == 'refs/heads/main' }}

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
3 changes: 1 addition & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"release": "semantic-release"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
"node": ">=18.0.0"
},
"sass": "index.scss",
"devDependencies": {
Expand Down

0 comments on commit 0c39530

Please sign in to comment.