mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
12 lines
216 B
Bash
Executable File
12 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
npm_config_cache="${CI_PROJECT_DIR}/node_modules/.npm-cache"
|
|
export npm_config_cache
|
|
|
|
npm install
|
|
npx update-browserslist-db@latest
|
|
npx puppeteer browsers install chrome
|
|
npm run build
|