fix: flaky test onboarding @no-mmi doesn't make any network requests to infura before onboarding is completed/test-failure-screenshot.png
and onboarding @no-mmi Clicks create a new wallet, accepts a secure password, reveals the Secret Recovery Phrase, confirm SRP/test-failure-screenshot.png
#10587
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: Check template and add labels | |
on: | |
issues: | |
types: [opened, edited] | |
pull_request_target: | |
types: [opened, edited] | |
jobs: | |
check-template-and-add-labels: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 # This retrieves only the latest commit. | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: yarn | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Check template and add labels | |
id: check-template-and-add-labels | |
env: | |
LABEL_TOKEN: ${{ secrets.LABEL_TOKEN }} | |
run: npm run check-template-and-add-labels |