Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ set -x
composer install --prefer-dist --no-progress --no-suggest
{ [ "${DEBUG}" ] || set +x; } 2>/dev/null

# Build Dropzone Drupal library
cd "docroot/libraries/dropzone"
yarn install
yarn build
cd -

# Get current branch name.
BRANCHNAME="$(git rev-parse --symbolic-full-name --abbrev-ref HEAD)"
if [ "$BRANCHNAME" == "HEAD" ]; then
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Setup PHP and tools
uses: shivammathur/setup-php@v2
with:
Expand Down