* Revert "fix(build): corepackのバグの回避 (#15387)" This reverts commit 9c70a4e63130f85d191c5bc16d0a4be5cd1dece2. * deps: update pnpm to v10 * fix broken lockfile * update changelog * fix * fix * Revert "fix" This reverts commit 4abc6c194edc20989f5ec97d343307a4b8c9047d. * fix * fix * attempt to fix docker build * lint fixes * fix: revertしすぎた * detect pnpm version and install it * fix: そもそもpnpmを2回入れる必要がないかも * fix * refactor * fix * refactor: remove unnecessary arg * Update Dockerfile * update pnpm to v10.6.1 * Update Changelog * chore: use node to avoid installing jq
16 lines
466 B
Bash
Executable File
16 lines
466 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
sudo chown node node_modules
|
|
sudo apt-get update
|
|
sudo apt-get -y install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libnss3 libxss1 libasound2 libxtst6 xauth xvfb
|
|
git config --global --add safe.directory /workspace
|
|
git submodule update --init
|
|
pnpm config set store-dir /home/node/.local/share/pnpm/store
|
|
pnpm install --frozen-lockfile
|
|
cp .devcontainer/devcontainer.yml .config/default.yml
|
|
pnpm build
|
|
pnpm migrate
|
|
pnpm exec cypress install
|