52 lines
701 B
TOML
52 lines
701 B
TOML
# THIS IS AUTOGENERATED. DO NOT EDIT MANUALLY
|
|
version = 1
|
|
name = "pleno-vue"
|
|
|
|
[setup]
|
|
script = '''
|
|
npm ci
|
|
npx playwright install
|
|
'''
|
|
|
|
[[actions]]
|
|
name = "Run dev"
|
|
icon = "run"
|
|
command = '''
|
|
npm run dev
|
|
'''
|
|
|
|
[[actions]]
|
|
name = "Vitest unit tests"
|
|
icon = "test"
|
|
command = '''
|
|
npm run test:unit
|
|
'''
|
|
|
|
[[actions]]
|
|
name = "Playwright smoke"
|
|
icon = "test"
|
|
command = '''
|
|
npm run test:e2e:smoke
|
|
'''
|
|
|
|
[[actions]]
|
|
name = "Playwright full suite"
|
|
icon = "test"
|
|
command = '''
|
|
npm run test:e2e:ci
|
|
'''
|
|
|
|
[[actions]]
|
|
name = "Playwright debug"
|
|
icon = "debug"
|
|
command = '''
|
|
npx playwright test --debug
|
|
'''
|
|
|
|
[[actions]]
|
|
name = "AI workflow check"
|
|
icon = "debug"
|
|
command = '''
|
|
node scripts/sync-ai-workflow.mjs --check
|
|
'''
|