Skip to content

WIP: init e2e

WIP: init e2e #947

Workflow file for this run

name: build
on:
push:
branches:
- '*'
paths-ignore:
- 'examples/**'
pull_request:
branches:
- main
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/shared/setup
- name: build
run: yarn ci:build
e2e:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/shared/setup
- name: e2e
run: |
yarn ci:build
yarn ci:e2e
# build-doc:
# runs-on: ubuntu-latest
# needs: build
# steps:
# - uses: actions/checkout@v4
# - uses: ./.github/workflows/shared/setup
# - name: build-doc
# run: yarn ci:build-doc