Skip to content

fix(deps): update dependency vue-router to v4.4.5 #485

fix(deps): update dependency vue-router to v4.4.5

fix(deps): update dependency vue-router to v4.4.5 #485

Workflow file for this run

name: Build test pack
on:
push:
branches: [develop, release/*]
pull_request:
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: latest
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Build
run: pnpm build
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Pack and upload Artifact
uses: actions/upload-artifact@v3
with:
name: crosssync-test-pack
path: dist/ # this will pack automatically, so no other packs needed
retention-days: 7