chore(main): release 1.2.0 #15
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: Code Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
concurrency: | |
group: ${{ github.job }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: π§Ή ESLint, π·οΈ Typecheck, π Prettier, ποΈ Build, π§ͺ Test | |
steps: | |
- name: π Checkout code | |
uses: actions/checkout@v4 | |
- name: π± Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: π₯ Install dependencies | |
run: npm ci | |
- name: π§Ή ESLint | |
run: npm run lint | |
- name: π·οΈ Typecheck | |
run: npm run typecheck | |
- name: π Prettier check | |
run: npm run format:check | |
- name: ποΈ Build | |
run: npm run build | |
- name: π§ͺ Test | |
run: npm run e2e:headless |