Skip to content

Commit

Permalink
build: update node version (#1122)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek authored Nov 19, 2024
1 parent e3f94b1 commit a336db2
Show file tree
Hide file tree
Showing 12 changed files with 434 additions and 423 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Add comments if method is too complex and/or whenever you judge necessary.

# Development Setup

You need at least [Node.js](http://nodejs.org/) **version 20.10.0**.
You need at least [Node.js](http://nodejs.org/) **version 22**.

After cloning the repository, install the dependencies:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies 📦
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies 📦
run: npm install @commitlint/cli
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- name: git config
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- name: git config
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies 📦
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ts-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies 📦
run: npm install
Expand Down
Loading

0 comments on commit a336db2

Please sign in to comment.