Submit Android score as Long
instead of Int
.
#89
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: "PR Checks" | |
on: [pull_request] | |
jobs: | |
build: | |
name: PR Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run Danger | |
run: | | |
cd $HOME | |
wget -O flutter.tar.xz https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.7.3-stable.tar.xz | |
tar xf flutter.tar.xz | |
export PATH="${PATH}:$HOME/flutter/bin" | |
cd $GITHUB_WORKSPACE | |
cd games_services | |
flutter pub get | |
cd .. | |
cd games_services_platform_interface | |
flutter pub get | |
cd .. | |
npm install --global yarn | |
yarn add danger --dev | |
yarn danger ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} |