feat(css): support css module name coversion #3508
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: Code Spell Check | |
on: [pull_request] | |
jobs: | |
code-spell-check: | |
name: Spell | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install pnpm | |
run: npm install -g [email protected] | |
- name: pnpm install | |
run: pnpm install | |
- name: Run Spell Check | |
shell: bash | |
run: npx cspell "**" --gitignore |