Skip to content

build(deps): bump vue from 3.4.27 to 3.5.13 #148

build(deps): bump vue from 3.4.27 to 3.5.13

build(deps): bump vue from 3.4.27 to 3.5.13 #148

Workflow file for this run

name: Prebuild
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
node_version: [18.x]
os: [ubuntu-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: pnpm
- name: Install
run: pnpm i
- name: Build
run: pnpm run build
- name: Build Docs
run: pnpm run docs:build