chore: bumb version to 0.1.0-alpha.4 #11
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
| # .github/workflows/ci.yml | |
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "packages/nuxt-freeform/**" | |
| - ".github/workflows/ci.yml" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "packages/nuxt-freeform/**" | |
| - ".github/workflows/ci.yml" | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PNPM | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.11.0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint | |
| run: pnpm --filter nuxt-freeform lint | |
| # test: | |
| # name: Test | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout | |
| # uses: actions/checkout@v4 | |
| # - name: Setup PNPM | |
| # uses: pnpm/action-setup@v4 | |
| # with: | |
| # version: 10.11.0 | |
| # - name: Setup Node.js | |
| # uses: actions/setup-node@v4 | |
| # with: | |
| # node-version: 22 | |
| # cache: "pnpm" | |
| # - name: Install dependencies | |
| # run: pnpm install --frozen-lockfile | |
| # - name: Prepare | |
| # run: pnpm --filter nuxt-freeform dev:prepare | |
| # - name: Test | |
| # run: pnpm --filter nuxt-freeform test |