Skip to content

Commit

Permalink
ci: add node-integration
Browse files Browse the repository at this point in the history
  • Loading branch information
legendecas committed May 9, 2024
1 parent 0fdb0ec commit c72d057
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: node integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
integration:
strategy:
fail-fast: false
matrix:
os: [macos-latest, macos-14, ubuntu-latest]
python: ["3.8", "3.10", "3.12"]
exclude:
- os: macos-14
python: "3.8"

runs-on: ${{ matrix.os }}
steps:
- name: Clone gyp-next
uses: actions/checkout@v4
with:
path: gyp-next
- name: Clone nodejs/node
uses: actions/checkout@v4
with:
repository: nodejs/node
path: node
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- name: Replace gyp in node
shell: bash
run: |
rm -rf node/tools/gyp
cp -r gyp-next node/tools/gyp
- name: Run configure
shell: bash
run: |
cd node
./configure

0 comments on commit c72d057

Please sign in to comment.