Skip to content

Add WOO X V3 subscriptions support #168

Add WOO X V3 subscriptions support

Add WOO X V3 subscriptions support #168

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: CI
runs-on: ${{ matrix.os }}
env:
NPM_CONFIG_MIN_RELEASE_AGE: 0
strategy:
matrix:
node-version: ['25.8.2']
os: [ubuntu-latest, ubuntu-24.04-arm]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Use Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies And Compile TS
run: npm ci --ignore-scripts
- name: Verify Registry Signatures
run: npm audit signatures
- name: Audit Production Dependencies
run: npm audit --omit=dev --audit-level=critical
- name: Check Code Format
run: npm run check-format
- name: Run Tests
run: npm run test