Skip to content

feat: create build_node_shared.yml #1

feat: create build_node_shared.yml

feat: create build_node_shared.yml #1

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)