chore(deps): bump @octokit/plugin-paginate-rest from 11.3.5 to 11.4.2 #5
This file contains 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: Pull Request | |
on: | |
pull_request: | |
branches: [master, release] | |
jobs: | |
verify: | |
runs-on: ${{ matrix.os }} | |
environment: PR | |
strategy: | |
matrix: | |
node: ['20.x'] | |
os: [ubuntu-latest] | |
env: | |
CI: 1 | |
NPM_TOKEN: ${{ secrets.NPM_RO_TOKEN }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install deps (with cache) | |
uses: bahmutov/npm-install@v1 | |
with: | |
install-command: yarn --immutable | |
- name: Verify | |
run: make verify | |
env: | |
SKIP_INSTALL: 1 # install with cache was done already |