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 nodejs.yml #392

Merged
merged 5 commits into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:
- 'master'
jobs:
build:
runs-on: self-hosted
runs-on: macos-latest
strategy:
matrix:
node-version: [8, 10, 12, 14, 15]
node-version: [18,20]

steps:
- uses: actions/checkout@v2
Expand All @@ -37,13 +37,13 @@ jobs:
path: fsevents.node
env:
CI: true
test_macos_10:
test_macos:
name: 'Test universal binary on macOS 10.15'
runs-on: macos-10.15
runs-on: macos-latest
needs: build
strategy:
matrix:
node-version: [8, 10, 12, 14, 15]
node-version: [18,20]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:
- master
jobs:
publish:
runs-on: self-hosted
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: node v12
- name: node v18
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18
- name: npm install, build, and test
run: |
npm install
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
},
"homepage": "https://github.com/fsevents/fsevents",
"devDependencies": {
"node-gyp": "^6.1.0"
"node-gyp": "^9.4.0"
}
}