diff --git a/.github/workflows/build_node_shared.yml b/.github/workflows/build_node_shared.yml new file mode 100644 index 000000000..27054d2a1 --- /dev/null +++ b/.github/workflows/build_node_shared.yml @@ -0,0 +1,22 @@ +name: Build Node.js Shared Library + +on: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + build: + runs-on: ubuntu-latest + container: + image: ghcr.io/ten-framework/ten_building_ubuntu2204 + steps: + - name: Checkout Node.js + uses: actions/checkout@v4 + with: + repository: nodejs/node + ref: v22.12.0 + + - name: Configure and Build + run: | + ./configure --shared + make -j$(nproc)