Skip to content

Commit

Permalink
tmp: build against vue lib branch
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed Mar 8, 2024
1 parent f0d2e5e commit 63fdef9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ jobs:
ref: 'main'
path: apps/assistant

- name: Checkout vue lib
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
repository: nextcloud-libraries/nextcloud-vue
ref: 'fix/widget-interactive-ncrichtext'
path: nextcloud-vue

- name: Checkout app
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
Expand All @@ -70,10 +77,18 @@ jobs:
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"

- name: Install dependencies & build library
working-directory: nextcloud-vue
run: |
npm ci
npm run build
npm link
- name: Install dependencies & build app
working-directory: apps/${{ env.APP_NAME }}
run: |
npm ci
npm link @nextcloud/vue
TESTING=true npm run build --if-present
- name: Install dependencies & build assistant
Expand Down

0 comments on commit 63fdef9

Please sign in to comment.