build(deps): bump actions/checkout from 5 to 6 #1553
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: Test | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| node: [ 18.19 ] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node.JS ${{ matrix.node }} | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: 'npm' | |
| # throws an error if package-lock.json is out-of-date | |
| - run: npm ci | |
| # We use aa-exec since Ubuntu 24.04's AppArmor profile blocks the use | |
| # of puppeteer otherwise, see | |
| # https://github.com/puppeteer/puppeteer/issues/12818 | |
| - run: aa-exec --profile=chrome npm test |