Skip to content

Commit

Permalink
chore(maint): add support of Node 22 / drop support of Node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
ntalfer committed Jan 15, 2025
1 parent c6669d2 commit 3b024cb
Show file tree
Hide file tree
Showing 4 changed files with 334 additions and 300 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '22'
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
- macos-11
- windows-2019
node_version:
- "18"
- "20"
- "22"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: Install packages
Expand All @@ -26,10 +26,10 @@ jobs:
coverage:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "22"
- name: Install packages
run: npm install
- name: Run eslint
Expand All @@ -39,11 +39,11 @@ jobs:
- name: Run coverage
run: npm run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand Down
Loading

0 comments on commit 3b024cb

Please sign in to comment.