b66fc6dcdb
Also copy the necessary vuetify dist directory in the `Earthfile` so that this app can be easily deployed to staging environments. Change-Id: I8d91c52bb8f7c31fc3764efe60a071e21b399b46
16 lines
375 B
Bash
Executable File
16 lines
375 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2022 Storj Labs, Inc.
|
|
# See LICENSE for copying information.
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
set -euxo pipefail
|
|
|
|
npm install --prefer-offline --no-audit --logleve verbose
|
|
echo "module stub" > ./node_modules/go.mod # prevent Go from scanning this dir
|
|
npm run build
|
|
npm run build-vuetify
|
|
|
|
npm run lint-ci
|
|
npm audit || true
|
|
npm run test
|