Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
name: "Linux Tests"
strategy:
matrix:
container: ["centos:7", "ubuntu:18.04"]
node: [12, 14]
container: ["ubuntu:18.04"]
node: [16, 18]
runs-on: ubuntu-latest
container:
image: ${{ matrix.container }}
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
name: "MacOS Tests"
strategy:
matrix:
node: [12, 14]
node: [16, 18]
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -59,6 +59,10 @@ jobs:
check-latest: true

- run: |
brew unlink [email protected]
brew install [email protected]
unlink /usr/local/bin/python3
ln -s /opt/homebrew/Cellar/[email protected]/3.10.14/bin/python3.10 /usr/local/bin/python3
npm install --global yarn
yarn
yarn test
Expand All @@ -67,7 +71,7 @@ jobs:
name: "Windows Tests"
strategy:
matrix:
node: [12, 14]
node: [16, 18]
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
"node-addon-api": "^5.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint": "^8.56.0",
"executive": "^1.6.3",
"fs-extra": "^7.0.0",
"mocha": "^7.1.1"
"fs-extra": "^11.2.0",
"mocha": "^10.4.0"
},
"keywords": [
"FileWatcher",
Expand Down
Loading
Loading