Skip to content

chore: bumb version to 0.1.0-alpha.4 #11

chore: bumb version to 0.1.0-alpha.4

chore: bumb version to 0.1.0-alpha.4 #11

Workflow file for this run

# .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