feat(android): encode android_app_id #75
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: Post push check | |
on: | |
push | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
# Переключение на выбранную при запуске action ветку и скачивание файлов в окружение. | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Установка зависимостей. | |
- name: Install dependencies | |
run: yarn | |
# Прогон тестов | |
- name: Run tests | |
run: yarn test |