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 f3e1948Copy full SHA for f3e1948
.github/workflows/ci.yml
@@ -12,20 +12,25 @@ 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
29
- name: pnpm-install
30
uses: pnpm/action-setup@v4
- with:
- run_install: |
- - args: [--frozen-lockfile, --strict-peer-dependencies]
31
+
32
+ - name: install
33
+ run: make install${{ matrix.system }}
34
35
- name: lint
36
run: pnpm lint
0 commit comments