We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85e215f commit 654cfacCopy full SHA for 654cfac
.github/workflows/ci.yml
@@ -12,20 +12,22 @@ on:
12
workflow_call:
13
14
env:
15
- OCIS_URL: https://localhost:9200
+ OC_URL: https://localhost:9200
16
17
jobs:
18
lint-and-tests:
19
+ strategy:
20
+ matrix:
21
+ system:
22
+ - Ocis
23
+ - Opencloud
24
runs-on: ubuntu-latest
25
steps:
26
- name: checkout
27
uses: actions/checkout@v4
28
- - name: pnpm-install
- uses: pnpm/action-setup@v4
- with:
- run_install: |
- - args: [--frozen-lockfile, --strict-peer-dependencies]
29
+ - name: install
30
+ run: make install${{ matrix.system }}
31
32
- name: lint
33
run: pnpm lint
0 commit comments