Skip to content

Add call-dependency-review callable workflow #223

Add call-dependency-review callable workflow

Add call-dependency-review callable workflow #223

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
permissions: read-all # Default. Each job can override this.
jobs:
lint:
uses: ./.github/workflows/call-lint.yml
test:
uses: ./.github/workflows/call-test.yml
with:
node-version: '["22", "24"]'
os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
exclude: |
[
{"node-version": "22", "os": "windows-latest"},
{"node-version": "24", "os": "macos-latest"}
]
test-options: 'foo bar'
test-default:
uses: ./.github/workflows/call-test.yml
test-node-version-file:
uses: ./.github/workflows/call-test.yml
with:
node-version-file: .node-version
dependency-review:
if: github.event_name == 'pull_request'
uses: ./.github/workflows/call-dependency-review.yml