Skip to content

bumping package versions for publishing #430

bumping package versions for publishing

bumping package versions for publishing #430

Workflow file for this run

# checks if vue package builds successfully
name: Vue
on:
push:
branches:
- main
paths:
- 'packages/common/**'
- 'packages/vue/**'
pull_request:
paths:
- 'packages/common/**'
- 'packages/vue/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Set up Node ⬢
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies 🧱
run: pnpm i
- name: Build Vue package 🛠
run: make vue-build