Add rimraf to devDevependencies #1447
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: test | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
premerge: | |
name: run premerge code checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: install | |
run: npm ci | |
- name: lint | |
run: npm run lint | |
- name: check format | |
run: npm run formatcheck | |
- name: typecheck | |
run: npm run typecheck | |
- name: test | |
run: npm run test:ci |