This repository was archived by the owner on Sep 12, 2025. It is now read-only.
chore: update version to 1.1.1 in package.json #18
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - name: 🧾 Checkout code | |
| uses: actions/checkout@v4 | |
| - name: 🐣 Set up pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 9 | |
| run_install: false | |
| - name: 🐍 Set up Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - name: 📦 Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: 🎨 Prettier format check | |
| continue-on-error: true | |
| run: pnpm run format:check | |
| # - name: 🔍 ESLint | |
| # run: pnpm run lint | |
| - name: 🧪 Run tests with coverage | |
| run: pnpm run test -- --coverage | |
| - name: 🏗️ Build library | |
| run: pnpm run build | |
| - name: 📤 Upload dist artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: dist | |
| path: dist |