mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-06 12:06:58 +00:00
* Revert "fix(build): corepackのバグの回避 (#15387)"
This reverts commit 9c70a4e631
.
* 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
15 lines
466 B
Bash
Executable file
15 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
|