[native] replace back button with close button on the scanning QR cod… #5674
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: ESLint & Flow & Jest | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: sudo ./install_protobuf.sh | |
working-directory: ./scripts | |
run: sudo ./install_protobuf.sh | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
- name: Fix node-gyp | |
run: python -m pip install packaging setuptools | |
- name: yarn ci-cleaninstall | |
run: yarn ci-cleaninstall | |
- name: yarn eslint:all --max-warnings=0 | |
run: yarn eslint:all --max-warnings=0 | |
- name: '[lib] flow' | |
working-directory: ./lib | |
run: ./node_modules/.bin/flow | |
- name: '[keyserver] flow' | |
working-directory: ./keyserver | |
run: ./node_modules/.bin/flow | |
- name: '[web] flow' | |
working-directory: ./web | |
run: ./node_modules/.bin/flow | |
- name: '[landing] flow' | |
working-directory: ./landing | |
run: ./node_modules/.bin/flow | |
- name: '[native] flow' | |
working-directory: ./native | |
run: ./node_modules/.bin/flow | |
- name: '[desktop] flow' | |
working-directory: ./desktop | |
run: ./node_modules/.bin/flow | |
- name: '[electron-update-server] flow' | |
working-directory: ./services/electron-update-server | |
run: ./node_modules/.bin/flow | |
- name: '[lib] test' | |
working-directory: ./lib | |
env: | |
ALCHEMY_API_KEY: ${{secrets.ALCHEMY_API_KEY}} | |
run: yarn test | |
- name: '[keyserver] test' | |
working-directory: ./keyserver | |
run: yarn test | |
- name: '[web] test' | |
working-directory: ./web | |
run: yarn test | |
- name: '[native] test' | |
working-directory: ./native | |
run: yarn test |