Update telephoto to v0.12.0 #6408
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Danger CI | |
on: [pull_request, merge_group] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Danger main check | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add SSH private keys for submodule repositories | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.ELEMENT_ENTERPRISE_DEPLOY_KEY }} | |
- name: Clone submodules | |
if: github.repository == '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/[email protected] | |
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 }} |