-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(ci): add node-gyp integration workflow (#72)
- Loading branch information
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: node-gyp integration | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Clone gyp-next | ||
uses: actions/checkout@v2 | ||
with: | ||
path: gyp-next | ||
- name: Clone nodejs/node-gyp | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: nodejs/node-gyp | ||
path: node-gyp | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.x | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
- name: Install dependencies | ||
run: | | ||
cd node-gyp | ||
npm install --no-progress | ||
- name: Replace gyp in node-gyp | ||
shell: bash | ||
run: | | ||
rm -rf node-gyp/gyp | ||
cp -r gyp-next node-gyp/gyp | ||
- name: Run tests | ||
run: | | ||
cd node-gyp | ||
npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters