Skip to content

Commit f3e1948

Browse files
committed
fix lint and unit tests
1 parent 85e215f commit f3e1948

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,25 @@ on:
1212
workflow_call:
1313

1414
env:
15-
OCIS_URL: https://localhost:9200
15+
OC_URL: https://localhost:9200
1616

1717
jobs:
1818
lint-and-tests:
19+
strategy:
20+
matrix:
21+
system:
22+
- Ocis
23+
- Opencloud
1924
runs-on: ubuntu-latest
2025
steps:
2126
- name: checkout
2227
uses: actions/checkout@v4
2328

2429
- name: pnpm-install
2530
uses: pnpm/action-setup@v4
26-
with:
27-
run_install: |
28-
- args: [--frozen-lockfile, --strict-peer-dependencies]
31+
32+
- name: install
33+
run: make install${{ matrix.system }}
2934

3035
- name: lint
3136
run: pnpm lint

0 commit comments

Comments
 (0)