chore(main): release 6.0.0 (#46) #112
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: TypeScript Check, Lint & Test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| check: | |
| name: TypeScript Check All | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: install node v22 | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 22 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: '**/node_modules' | |
| key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
| - name: yarn install | |
| run: yarn install --frozen-lockfile | |
| - name: check-all | |
| run: yarn check-all |