feat: display account address qr code #214
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 | |
on: [pull_request] | |
jobs: | |
pr: | |
strategy: | |
matrix: | |
step: ['lint', 'test', 'build'] | |
name: ${{ matrix.step }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: checkout | |
- name: Setup node v16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: ${{ matrix.step }} | |
run: | | |
yarn install --immutable | grep -v 'YN0013' | |
yarn ${{ matrix.step }} |