feat(ci): create test build workflows

This commit is contained in:
Viren070
2025-01-14 18:26:54 +00:00
committed by GitHub
parent 6025437f42
commit c475a89776
+24
View File
@@ -0,0 +1,24 @@
name: Build Addon
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install Dependencies
run: npm ci
- name: Build Addon
run: npm run build