[Event Highlighting]: use timetags of bundled osc messages #201
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- workflow_dispatch | |
- push | |
- pull_request | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v5 | |
- if: matrix.os == 'ubuntu-latest' | |
run: sudo apt install libsecret-1-0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'npm' | |
- run: npm install | |
- name: Setup Pulsar Editor | |
uses: pulsar-edit/[email protected] | |
- name: Run the headless Pulsar Tests | |
uses: coactions/[email protected] | |
with: | |
run: pulsar --test spec |