Skip to content

Commit 6b86fb4

Browse files
committed
chore(CI): Add cfpm script
1 parent b022467 commit 6b86fb4

File tree

5 files changed

+22
-1
lines changed

5 files changed

+22
-1
lines changed

.github/workflows/cron.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ jobs:
5151
box server start cfengine=${{ matrix.cfengine }}
5252
sleep 30
5353
54+
- name: CFPM
55+
if: ${{ matrix.cfengine == 'adobe@2021' || matrix.cfengine == 'adobe@2023' }}
56+
run: |
57+
box run-script install:cfpm
58+
5459
- name: Install dependencies
5560
run: |
5661
box install

.github/workflows/pr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ jobs:
5959
box server start cfengine=${{ matrix.cfengine }}
6060
sleep 30
6161
62+
- name: CFPM
63+
if: ${{ matrix.cfengine == 'adobe@2021' || matrix.cfengine == 'adobe@2023' }}
64+
run: |
65+
box run-script install:cfpm
66+
6267
- name: Install dependencies
6368
run: |
6469
box install --verbose

.github/workflows/prerelease.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ jobs:
5353
box server start cfengine=${{ matrix.cfengine }}
5454
sleep 30
5555
56+
- name: CFPM
57+
if: ${{ matrix.cfengine == 'adobe@2021' || matrix.cfengine == 'adobe@2023' }}
58+
run: |
59+
box run-script install:cfpm
60+
5661
- name: Install dependencies
5762
run: |
5863
box install

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ jobs:
5454
box server start cfengine=${{ matrix.cfengine }}
5555
sleep 30
5656
57+
- name: CFPM
58+
if: ${{ matrix.cfengine == 'adobe@2021' || matrix.cfengine == 'adobe@2023' }}
59+
run: |
60+
box run-script install:cfpm
61+
5762
- name: Install dependencies
5863
run: |
5964
box install

box.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
],
2323
"scripts":{
2424
"format":"cfformat run models/**/*.cfc,dsl/**/*.cfc,tests/specs/**/*.cfc,ModuleConfig.cfc --overwrite",
25-
"format:check":"cfformat check models/**/*.cfc,dsl/**/*.cfc,tests/specs/**/*.cfc,ModuleConfig.cfc --verbose"
25+
"format:check":"cfformat check models/**/*.cfc,dsl/**/*.cfc,tests/specs/**/*.cfc,ModuleConfig.cfc --verbose",
26+
"install:cfpm": "cfpm install postgresql"
2627
},
2728
"private":false,
2829
"license":[

0 commit comments

Comments
 (0)