You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
name: Danger CI |
|
|
|
on: [pull_request, merge_group] |
|
|
|
jobs: |
|
build: |
|
runs-on: ubuntu-latest |
|
name: Danger main check |
|
# Skip in forks, it doesn't work even with the fallback token |
|
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'element-hq/element-x-android' }} |
|
steps: |
|
- uses: actions/checkout@v4 |
|
- name: Add SSH private keys for submodule repositories |
|
uses: webfactory/ssh-agent@v0.9.0 |
|
with: |
|
ssh-private-key: ${{ secrets.ELEMENT_ENTERPRISE_DEPLOY_KEY }} |
|
- name: Clone submodules |
|
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'element-hq/element-x-android' }} |
|
run: git submodule update --init --recursive |
|
- run: | |
|
npm install --save-dev @babel/plugin-transform-flow-strip-types |
|
- name: Danger |
|
uses: danger/danger-js@12.3.3 |
|
with: |
|
args: "--dangerfile ./tools/danger/dangerfile.js" |
|
env: |
|
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} |
|
# Fallback for forks |
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|