We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9426e82 + bd8b471 commit 13bc0a2Copy full SHA for 13bc0a2
2 files changed
.github/scripts/build.sh
@@ -79,6 +79,12 @@ set -x
79
composer install --prefer-dist --no-progress --no-suggest
80
{ [ "${DEBUG}" ] || set +x; } 2>/dev/null
81
82
+# Build Dropzone Drupal library
83
+cd "docroot/libraries/dropzone"
84
+yarn install
85
+yarn build
86
+cd -
87
+
88
# Get current branch name.
89
BRANCHNAME="$(git rev-parse --symbolic-full-name --abbrev-ref HEAD)"
90
if [ "$BRANCHNAME" == "HEAD" ]; then
.github/workflows/build.yml
@@ -26,6 +26,10 @@ jobs:
26
uses: actions/checkout@v2
27
with:
28
fetch-depth: '0'
29
+ - name: Setup Node.js
30
+ uses: actions/setup-node@v3
31
+ with:
32
+ node-version: '16'
33
- name: Setup PHP and tools
34
uses: shivammathur/setup-php@v2
35
0 commit comments