mirror of
https://github.com/Viren070/AIOStreams.git
synced 2025-12-01 23:14:04 +01:00
28 lines
506 B
YAML
28 lines
506 B
YAML
name: Build Addon
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'packages/**'
|
|
- 'package-lock.json'
|
|
- 'package.json'
|
|
- 'tsconfig.json'
|
|
- 'tsconfig.base.json'
|
|
|
|
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
|