fix: make gen2 banner button align better with text #7503
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: Test | |
on: | |
pull_request: | |
branches: [main, next-release/main] | |
types: [opened, synchronize] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Setup Node.js 16.x | |
uses: actions/setup-node@main | |
with: | |
node-version: 16.x | |
- name: Install Dependencies | |
run: yarn | |
- name: Run tests | |
run: yarn test | |
- name: Run Build | |
run: yarn build | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 |