mirror of
https://github.com/Viren070/AIOStreams.git
synced 2025-12-01 23:14:04 +01:00
30 lines
591 B
YAML
30 lines
591 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 corepack
|
|
run: corepack enable
|
|
- name: Install Dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
- name: Build Addon
|
|
run: pnpm run build
|