Skip to content

Commit ba9e3a8

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

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

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

3035
- name: lint
3136
run: pnpm lint

0 commit comments

Comments
 (0)