Skip to content

Commit

Permalink
feat: create build_node_shared.yml (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunxilin authored Jan 9, 2025
1 parent b7eb3ab commit 37429a7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build_node_shared.yml
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 37429a7

Please sign in to comment.