mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-25 23:44:57 +02:00
* enhance(frontend/test): frontend e2eをVitest Browser Modeに移行
* fix
* fix unit tests
* fix
* fix
* update playwright
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* perf
* Revert "perf"
This reverts commit e60e965c3c.
* fix
16 lines
508 B
Bash
Executable File
16 lines
508 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 --filter frontend exec playwright install --with-deps chromium
|