Skip to content

Add jscom explicitly #6

Add jscom explicitly

Add jscom explicitly #6

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [chrome, firefox]
node-version: [22.x, 23.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Packages
run: npm install
- name: Build
run: npm run release-${{ matrix.platform }}
- name: Upload Build as Artifact
uses: actions/upload-artifact@v4
with:
name: dist-${{ matrix.platform }}-${{ matrix.node-version }}
path: dist-${{ matrix.platform }}