mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 17:57:04 +08:00
64b25b26c3
Allows running tests without constantly running `composer install` on each extension.
19 lines
443 B
YAML
Executable File
19 lines
443 B
YAML
Executable File
name: Frontend Workflow
|
|
|
|
on: [workflow_dispatch, push, pull_request]
|
|
|
|
jobs:
|
|
run:
|
|
uses: ./.github/workflows/REUSABLE_frontend.yml
|
|
with:
|
|
frontend_directory: ./
|
|
backend_directory: ./
|
|
js_package_manager: yarn
|
|
cache_dependency_path: ./yarn.lock
|
|
main_git_branch: 2.x
|
|
enable_tests: true
|
|
enable_bundlewatch: true
|
|
|
|
secrets:
|
|
bundlewatch_github_token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
|