Skip to content

fix(bridge-vue3): rewrite path navigations with basename in hash his… #12

fix(bridge-vue3): rewrite path navigations with basename in hash his…

fix(bridge-vue3): rewrite path navigations with basename in hash his… #12

Workflow file for this run

name: Lint Dependencies
permissions:
contents: read
on:
pull_request:
branches: [main, '**']
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint-deps:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout Repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js 20
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check for ghost dependencies
run: pnpm run lint:deps