Contract Linting #206
Workflow file for this run
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
name: CI | |
on: | |
pull_request: | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Use Node.js LTS versions | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: corepack enable | |
- run: yarn install | |
- name: yarn lint | |
run: yarn lint | |
- name: yarn build | |
run: yarn build | |
- name: yarn test | |
run: yarn test --exclude "**/e2e/**" | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.18" | |
- run: corepack enable | |
- run: yarn install | |
- name: yarn start:docker | |
run: yarn start:docker | |
- name: yarn build | |
run: yarn build | |
- name: yarn start:contract | |
run: yarn start:contract | |
- name: Install linux deps | |
run: | | |
sudo apt-get install --no-install-recommends -y \ | |
fluxbox \ | |
xvfb | |
- name: Run xvfb and fluxbox | |
run: | | |
Xvfb :0 -screen 0 1024x768x24 -listen tcp -ac & | |
fluxbox & | |
env: | |
DISPLAY: :0.0 | |
- name: Run e2e tests | |
uses: cypress-io/github-action@248bde77443c376edc45906ede03a1aba9da0462 | |
with: | |
start: npx serve ui/dist -p 5173 | |
command: yarn test:e2e | |
wait-on: "http://localhost:5173" | |
wait-on-timeout: 120 | |
browser: chrome | |
env: | |
DISPLAY: :0.0 | |
SECRET_WORDS: "orbit bench unit task food shock brand bracket domain regular warfare company announce wheel grape trust sphere boy doctor half guard ritual three ecology" | |
- name: Archive e2e artifacts | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: e2e-artifacts | |
path: | | |
ui/test/e2e/videos | |
ui/test/e2e/screenshots | |
continue-on-error: true |