chore(deps): update dependency knip to v5.34.4 #4359
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: auto-test | |
on: push | |
jobs: | |
auto-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: install dependency | |
run: yarn install | |
- name: test format | |
run: yarn run prettier | |
- name: test linter | |
run: yarn run lint | |
- name: test style lint | |
run: yarn run lint-style | |
- name: test compiler | |
run: yarn run compiler-check | |
- name: auto code review via knip | |
run: yarn run knip | |
- name: test unit-testing and integration-testing | |
run: yarn run jest --ci |