tea0s_multimuse-tracker/.github/workflows/ci.yml
2026-05-16 12:56:59 -04:00

36 lines
623 B
YAML

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build plugin
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Build plugin
run: npm run build
- name: Verify release assets exist
run: |
test -f main.js
test -f manifest.json
test -f styles.css