Skip to content

Commit

Permalink
fixing issue with missing folder on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano authored Mar 20, 2024
1 parent 7507e46 commit 91ef313
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,13 @@ jobs:
- name: Run Tests
run: |
# Create the CommandBox modules folder, for some reason it is not created
mkdir -p ~/.CommandBox/cfml/modules
# Link up the module so we can do testing!
box link --force
# Test
box task run taskfile=build/Build target="runTests"
# Create the CommandBox modules folder, for some reason it is not created
rm -Rf ~/.CommandBox/cfml/modules/coldbox-cli
mkdir -p ~/.CommandBox/cfml/modules
# Link up the module so we can do testing!
box link --force
# Test
box task run taskfile=build/Build target="runTests"
- name: Failure Logs
if: failure()
Expand Down

0 comments on commit 91ef313

Please sign in to comment.