Skip to content

Commit

Permalink
Bump CI/CD to Node.js 18
Browse files Browse the repository at this point in the history
  • Loading branch information
bkimminich committed May 2, 2023
1 parent 3b677b5 commit 11bbd8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
steps:
- name: "Check out Git repository"
uses: actions/checkout@v2
- name: "Use Node.js 14"
- name: "Use Node.js 18"
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18
- name: "Install application"
run: npm install --ignore-scripts
- name: "Lint code"
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18]
node-version: [16, 18, 20]
steps:
- name: "Check out Git repository"
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
- run: npm install
- uses: JS-DevTools/npm-publish@v1
with:
Expand Down

0 comments on commit 11bbd8b

Please sign in to comment.