fix: make gen2 banner button align better with text #4968
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: Spellcheck | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
permissions: | |
contents: read | |
jobs: | |
Spellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
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 Spellcheck | |
run: yarn spellcheck |