This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
feat: align type for v1 and v2 users #95
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: ci | |
on: | |
push: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm ci | |
- run: npm run check:lint | |
- run: npm run check:format | |
- run: npm run check:types | |
- run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD --verbose |