Skip to content

Commit

Permalink
breaking: Dropped support for Node <18
Browse files Browse the repository at this point in the history
  • Loading branch information
vHeemstra authored Dec 2, 2023
2 parents fa6b1f4 + e3408ea commit 25fdf22
Show file tree
Hide file tree
Showing 9 changed files with 3,151 additions and 1,418 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
cache: npm

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
cache: npm
registry-url: https://registry.npmjs.org
- name: Install dependencies
Expand All @@ -36,7 +36,7 @@ jobs:
# - name: Install Node.js
# uses: actions/setup-node@v4
# with:
# node-version: 16.x
# node-version: 20.x
# cache: npm
# scope: '@vHeemstra'
# registry-url: https://npm.pkg.github.com
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_experiment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- name: Blabla
id: get-pr-commits
uses: actions/github-script@v6
uses: actions/github-script@v7
# env:
# FIRST_NAME: Mona
# LAST_NAME: Octocat
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ci_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
cache: npm
- name: Install dependencies
run: npm ci
Expand All @@ -44,7 +44,9 @@ jobs:
node-version:
# - 12.x
# - 14.x
- 16.x
# - 16.x
- 18.x
- 20.x
os:
- ubuntu-latest
- windows-latest
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/ci_push_on_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
cache: npm
- name: Install dependencies
run: npm ci
Expand All @@ -43,7 +43,9 @@ jobs:
node-version:
# - 12.x
# - 14.x
- 16.x
# - 16.x
- 18.x
- 20.x
os:
- ubuntu-latest
- windows-latest
Expand Down Expand Up @@ -83,7 +85,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
cache: npm
registry-url: https://registry.npmjs.org/

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Check commits
id: check-commits
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
COMMITS_JSON: ${{ toJSON( github.event.commits ) }}
TITLE_REGEX: '^Something: ' # Regex without the '/' boundary characters
Expand Down
Loading

0 comments on commit 25fdf22

Please sign in to comment.