fixed insane new strict default of restrict-template-expressions #102
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: validate | |
on: push | |
jobs: | |
validate: | |
name: Validate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: npm install | |
# lint | |
- run: npx check-package-lock | |
- run: npx shellcheck-all | |
- run: yamllint --strict . | |
- run: npx tsc -b | |
- run: npx eslint . | |
- run: npx prettier --log-level warn --check . |