test(vitest): use react plugin (hopefully it will fix CI error) #497
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 | |
- 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 |