build(deps): bump follow-redirects from 1.15.11 to 1.16.0 (#196) #466
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: Build | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Enable Corepack | |
| run: | | |
| corepack enable | |
| corepack install | |
| - name: Install dependencies and build | |
| run: corepack yarn install --immutable | |
| - name: Run tests | |
| run: | | |
| # See: https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md | |
| echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns | |
| corepack yarn test | |
| - name: Upload compiled code as artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: ghost-cursor | |
| path: lib/ |