Skip to content

fix: background url #866

fix: background url

fix: background url #866

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: 20
cache: yarn
- run: yarn set version stable
- run: yarn install --immutable
- run: yarn lint
- run: yarn format:check
cypress:
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
app: [main, loan, lend, dao]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- run: yarn set version stable
- run: yarn install --immutable
- run: yarn run dev &
working-directory: apps/${{ matrix.app }}
- run: yarn run cy:run:e2e:${{ matrix.app }}
working-directory: tests
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-${{ matrix.app }}
path: tests/cypress/screenshots