Skip to content

Commit

Permalink
fix: switch to node 20 (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
Almenon authored Nov 15, 2024
1 parent 4fea8e8 commit 5f1aac1
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ jobs:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16.x
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
Expand All @@ -32,9 +29,9 @@ jobs:
- name: Test with pytest
run: pytest

- name: Use Node.js 16
uses: actions/setup-node@v2.1.2
- name: Setup Node
uses: actions/setup-node@v4.1.0
with:
node-version: "16"
node-version: "20"
- run: npm ci
- run: npm test

0 comments on commit 5f1aac1

Please sign in to comment.