Fix a typo #54
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: CI | |
on: | |
push: | |
branches: [main, oldstable] | |
pull_request: | |
branches: [main, oldstable] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
- run: pnpm install | |
- run: npm run format:check | |
- run: npm run lint | |
- run: npm run test | |
- name: Check ESM module resolution | |
run: npx @arethetypeswrong/cli --ignore-rules cjs-resolves-to-esm --pack |