BTHAMM-31: Set sales order line items from backend #1764
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: pull_request | |
jobs: | |
run-unit-tests: | |
runs-on: ubuntu-20.04 | |
container: compucorp/civicrm-buildkit:1.3.1-php8.0-chrome | |
env: | |
CIVICRM_EXTENSIONS_DIR: site/web/sites/all/modules/civicrm/tools/extensions | |
services: | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Config mysql database as per CiviCRM requirement | |
run: echo "SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));" | mysql -u root --password=root --host=mysql | |
- name: Config amp | |
run : amp config:set --mysql_dsn=mysql://root:root@mysql:3306 | |
- name: Build Drupal site | |
run: civibuild create drupal-clean --civi-ver 5.51.3 --cms-ver 7.79 --web-root $GITHUB_WORKSPACE/site | |
- uses: compucorp/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
repo: compucorp/civicrm-core | |
version: 5.51.3 | |
path: site/web/sites/all/modules/civicrm | |
- uses: actions/checkout@v2 | |
with: | |
path: ${{ env.CIVICRM_EXTENSIONS_DIR }}/uk.co.compucorp.civicase | |
- name: Installing CiviCase and its dependencies | |
working-directory: ${{ env.CIVICRM_EXTENSIONS_DIR }} | |
run: | | |
git clone --depth 1 https://github.com/civicrm/org.civicrm.shoreditch.git | |
git clone --depth 1 https://github.com/compucorp/uk.co.compucorp.usermenu.git | |
cv en shoreditch usermenu civicase | |
- name: Run JS unit tests | |
working-directory: ${{ env.CIVICRM_EXTENSIONS_DIR }}/uk.co.compucorp.civicase | |
run: | | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
nvm install | |
nvm use | |
npm ci | |
npx gulp test | |
- name: Run phpunit tests | |
if: ${{ always() }} | |
working-directory: ${{ env.CIVICRM_EXTENSIONS_DIR }}/uk.co.compucorp.civicase | |
run: phpunit5 |