feat: improve highlight card by adding variants #43
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: Pull Request Lint Check | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
lint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.19.x' | |
registry-url: https://registry.npmjs.org/ | |
- name: Install dependencies | |
run: yarn install | |
- name: Lint Check | |
run: yarn run lint && yarn run type-check |