fix: print - in invalid utility warning if it was present in class
#618
Workflow file for this run
This file contains hidden or 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: basic-ci | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| ci: | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bahmutov/npm-install@v1 | |
| with: | |
| install-command: npm i --legacy-peer-deps | |
| - name: ts | |
| run: npm run ts:check | |
| - name: compile | |
| run: npm run compile | |
| - name: check commonjs node compat | |
| run: node ./dist/cjs/create.js | |
| - name: lint | |
| run: npm run lint | |
| - name: test | |
| run: npm run test | |
| - name: prettier | |
| run: npm run format:check |