Skip to content

chore(deps): bump @octokit/plugin-paginate-rest from 11.3.5 to 11.4.2 #5

chore(deps): bump @octokit/plugin-paginate-rest from 11.3.5 to 11.4.2

chore(deps): bump @octokit/plugin-paginate-rest from 11.3.5 to 11.4.2 #5

Workflow file for this run

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