Skip to content

Keep review notes outside target repos #10

Keep review notes outside target repos

Keep review notes outside target repos #10

Workflow file for this run

name: Product gate
on:
pull_request:
permissions:
contents: read
jobs:
product-gate:
name: Product gate (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [22.13.0, 24.x]
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install the pinned npm version
run: npm install --global npm@11.5.1
- name: Install lockfile dependencies
run: npm ci
- name: Run product gate
run: npm run check