🐛 Fixed issue: removed re-open of the keyboard after pincode set #131
This file contains hidden or 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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
name: Simple tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare the Node environment | |
uses: ./.github/actions/prepare_node | |
with: | |
node-version: ${{ vars.NODE_VERSION }} | |
- name: Test | |
run: | | |
npm run i18n:build:default | |
npm test |