From 37429a7b09e3557941347f1889084f88db162eb6 Mon Sep 17 00:00:00 2001 From: xxxxl_sun <31622273+sunxilin@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:04:53 +0800 Subject: [PATCH] feat: create build_node_shared.yml (#531) --- .github/workflows/build_node_shared.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build_node_shared.yml 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)