Skip to content

Commit

Permalink
ci: skip installation for current versions of deps
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac committed Feb 9, 2022
1 parent 589eda4 commit e43a4cc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
node-version: [ 14 ]
integration-deps:
- diagram-js@7.x bpmn-js@8.x
- diagram-js@8.x bpmn-js@9.0.0-alpha.2
- "" # as defined in package.json

runs-on: ${{ matrix.os }}

Expand All @@ -31,7 +31,8 @@ jobs:
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
- name: Install dependencies for integration
- name: Install dependencies for integration test
if: ${{ matrix.integration-deps != '' }}
run: npm install ${{ matrix.integration-deps }}
- name: Build
env:
Expand Down

0 comments on commit e43a4cc

Please sign in to comment.