fix: presentation preempts an active screen share for the spotlight #2028
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: Audit | |
| on: [push] | |
| jobs: | |
| audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # @v4.3.0 | |
| - name: Use Node.js 24.x | |
| uses: actions/setup-node@v4.0.1 | |
| with: | |
| node-version: 24.x | |
| cache: 'npm' | |
| - name: Upgrade npm | |
| run: npm i -g npm | |
| - name: Install | |
| run: npm ci | |
| - name: Audit signatures | |
| run: npm audit signatures |