refactor(accounts-actions): dont pass hook params to subplebbit.edit #526
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CI for src folder | |
name: CI | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'test/**' | |
- 'src/**' | |
- 'config/**' | |
# - '.github/**' | |
- 'package.json' | |
- 'yarn.lock' | |
push: | |
branches: | |
- master | |
paths: | |
- 'test/**' | |
- 'src/**' | |
- 'config/**' | |
- '.github/**' | |
- 'package.json' | |
- 'yarn.lock' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
steps: | |
- run: sudo apt install -y xvfb | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: yarn install --frozen-lockfile | |
- run: yarn test --pool=forks # --pool=forks fixes "Segmentation fault" error in CI | |
- run: yarn build | |
- run: yarn webpack | |
# disable hosts we shouldn't use | |
- run: sudo echo "255.255.255.255 cloudflare-ipfs.com" | sudo tee -a /etc/hosts | |
- run: sudo echo "255.255.255.255 pubsubprovider.xyz" | sudo tee -a /etc/hosts | |
- run: yarn test:server & yarn test:server:wait-on | |
- run: CHROME_BIN=$(which chrome) FIREFOX_BIN=$(which firefox) yarn test:e2e:mock | |
- run: DEBUG="plebbit-js:*" CHROME_BIN=$(which chrome) FIREFOX_BIN=$(which firefox) yarn test:e2e:browser | |
# electron cannot run headless needs virtual display xvfb | |
- run: DEBUG="plebbit-js:*" xvfb-run yarn test:e2e:electron | |
- run: CHROME_BIN=$(which chrome) FIREFOX_BIN=$(which firefox) yarn test:e2e:mock-content |