Skip to content

Sync build with @skirtle/create-vue-lib (#10) #2

Sync build with @skirtle/create-vue-lib (#10)

Sync build with @skirtle/create-vue-lib (#10) #2

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
ci:
if: github.repository == 'skirtles-code/vue-vnode-utils'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Type check
run: pnpm run type-check
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test:unit