Skip to content

Fix infinite loading of vue-router plugin #865

Fix infinite loading of vue-router plugin

Fix infinite loading of vue-router plugin #865

Workflow file for this run

name: GuideChimp - CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install
run: npm ci
- name: Build
run: npm run build --if-present
- name: Test
run: npm test
env:
CI: true
- name: Show dist
run: |
ls -la
ls -laR dist/
- name: Archive npm failure logs
uses: actions/upload-artifact@v4
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs
if-no-files-found: ignore