feat(list): add common list component #21
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: Lint Pr Title | |
on: [pull_request] | |
jobs: | |
lint-code-spell: | |
name: Code Spell Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- name: Setup Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Code Spell Check | |
uses: streetsidesoftware/cspell-action@v6 | |
with: | |
files: "**" | |
config: .cspell.json | |
strict: true | |
verbose: true |