Prepare v4.1.3 release #231
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@v6 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| - run: npm install | |
| - name: Setup Pulsar Editor | |
| uses: pulsar-edit/action-pulsar-dependency@v3.4 | |
| - name: Run the headless Pulsar Tests | |
| uses: coactions/setup-xvfb@v1.0.1 | |
| with: | |
| run: pulsar --test spec |