mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
# Runs frontend tests.
|
|
#
|
|
# Checks for changes to frontend files before running the tests.
|
|
# When manually triggered or called from another workflow, always runs the tests.
|
|
|
|
name: 'frontend tests'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
types:
|
|
- 'ready_for_review'
|
|
- 'opened'
|
|
- 'synchronize'
|
|
merge_group:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: invokeai/frontend/web
|
|
|
|
jobs:
|
|
frontend-tests:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10 # expected run time: <2 min
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: check for changed frontend files
|
|
if: ${{ github.event_name != 'workflow_dispatch' && github.event_name != 'workflow_call' }}
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@v42
|
|
with:
|
|
files_yaml: |
|
|
frontend:
|
|
- 'invokeai/frontend/web/**'
|
|
|
|
- name: install dependencies
|
|
if: ${{ steps.changed-files.outputs.frontend_any_changed == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' }}
|
|
uses: ./.github/actions/install-frontend-deps
|
|
|
|
- name: vitest
|
|
if: ${{ steps.changed-files.outputs.frontend_any_changed == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' }}
|
|
run: 'pnpm test:no-watch'
|
|
shell: bash
|