Skip to content

chore: add support for SDK client #2702

chore: add support for SDK client

chore: add support for SDK client #2702

Workflow file for this run

name: PR review
on: [pull_request]
permissions:
contents: read # Access needed to checkout the repo.
issues: read # Needed to retrieve commits on a pull request.
pull-requests: write # Write access needed to create a comment.
jobs:
# Danger is a tool that can help during code reviews. Automate common
# code review tasks. https://danger.systems/js/
# TL;DR - it runs script `dangerfile.js` on each pull request.
danger:
runs-on: ubuntu-latest
name: Danger
steps:
- uses: actions/checkout@v4
- name: Run danger
run: npx danger@11 ci --dangerfile dangerfile.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}