Skip to content

Commit

Permalink
remove outdated Node 10 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
svenkreiss committed Mar 12, 2023
1 parent d273b66 commit 758a6cc
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
python-version: '3.8'

- name: Build sdist
run: python setup.py sdist
Expand Down Expand Up @@ -56,9 +56,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3

# same setup as in tests (Python-based, not Node)
- uses: actions/setup-python@v4
name: Install Python
with:
node-version: 10
python-version: '3.8'

- run: npm install
- run: npm run lint
- run: npm run test
Expand All @@ -70,9 +74,13 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3

# same setup as in tests (Python-based, not Node)
- uses: actions/setup-python@v4
name: Install Python
with:
node-version: 10
python-version: '3.8'

- run: npm install
- run: npm run lint
- run: npm run test
Expand All @@ -86,9 +94,13 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3

# same setup as in tests (Python-based, not Node)
- uses: actions/setup-python@v4
name: Install Python
with:
node-version: 10
python-version: '3.8'

- run: npm install
- run: npm run lint
- run: npm run test
Expand Down

0 comments on commit 758a6cc

Please sign in to comment.