mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 03:12:11 +08:00
27fb011bf5
* chore: yarn workspaces means we only need a single `yarn.lock` * fix: add a `cache_dependency_path` workflow input * fix: re-introduce `env.cache_dependency_path`
21 lines
503 B
YAML
Executable File
21 lines
503 B
YAML
Executable File
name: Lock JS
|
|
|
|
on: [workflow_dispatch, push, pull_request]
|
|
|
|
jobs:
|
|
run:
|
|
uses: ./.github/workflows/REUSABLE_frontend.yml
|
|
with:
|
|
enable_bundlewatch: false
|
|
enable_prettier: true
|
|
enable_typescript: false
|
|
|
|
frontend_directory: ./extensions/lock/js
|
|
backend_directory: ./extensions/lock
|
|
js_package_manager: yarn
|
|
cache_dependency_path: ./yarn.lock
|
|
main_git_branch: main
|
|
|
|
secrets:
|
|
bundlewatch_github_token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
|