Skip to content

Commit

Permalink
Merge pull request #54 from montumodi/upgrade-node-urlib
Browse files Browse the repository at this point in the history
Upgrade node &  urllib version
  • Loading branch information
montumodi authored Sep 9, 2024
2 parents b72d9a7 + 5e541f7 commit df144e4
Show file tree
Hide file tree
Showing 23 changed files with 7,071 additions and 2,110 deletions.
254 changes: 0 additions & 254 deletions .eslintrc

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 14, 16, 18 ]
node: [ 18, 20, 22 ]
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v3
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run tests on pull request create/update

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18, 20, 22 ]
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test
2 changes: 1 addition & 1 deletion .github/workflows/testcoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo:
- uses: actions/setup-node@v1
with:
node-version: 16
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm test
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
integration
integ
node_modules
.tmp
.idea
Expand Down
251 changes: 251 additions & 0 deletions eslint.config.js

Large diffs are not rendered by default.

Loading

0 comments on commit df144e4

Please sign in to comment.