Skip to content

Commit

Permalink
fix: fix to CI runner where the referenced required app isn't availab…
Browse files Browse the repository at this point in the history
…le in the environment.
  • Loading branch information
GichanaMayaka committed Jun 10, 2024
1 parent 172c9fc commit db38c22
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: CI

on:
Expand Down Expand Up @@ -42,7 +41,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: "3.10"

- name: Setup Node
uses: actions/setup-node@v3
Expand Down Expand Up @@ -81,6 +80,11 @@ jobs:
mariadb --host 127.0.0.1 --port 3306 -u root -proot -e "SET GLOBAL character_set_server = 'utf8mb4'"
mariadb --host 127.0.0.1 --port 3306 -u root -proot -e "SET GLOBAL collation_server = 'utf8mb4_unicode_ci'"
- name: Get ERPNext
working-directory: /home/runner/frappe-bench
run: |
bench get-app --branch version-15 erpnext $GITHUB_WORKSPACE
- name: Install
working-directory: /home/runner/frappe-bench
run: |
Expand All @@ -90,7 +94,7 @@ jobs:
bench --site test_site install-app kenya_compliance
bench build
env:
CI: 'Yes'
CI: "Yes"

- name: Run Tests
working-directory: /home/runner/frappe-bench
Expand Down

0 comments on commit db38c22

Please sign in to comment.