1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix commands

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-01-25 13:45:55 -05:00
parent 5088d33496
commit 6b8289da59
3 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,8 @@
name: Check Documentation name: Check Documentation
on: on:
pull_request: pull_request:
types: [opened, labeled, unlabeled, synchronize] branches:
- "**"
jobs: jobs:
build: build:
name: Check Docs name: Check Docs

View File

@ -17,6 +17,11 @@
"^build" "^build"
] ]
}, },
"build:docs": {
"dependsOn": [
"^build"
]
},
"dev": { "dev": {
"dependsOn": [ "dependsOn": [
"prepare:dev" "prepare:dev"

View File

@ -17,7 +17,7 @@
}, },
"scripts": { "scripts": {
"build": "yarn run webpack --config webpack/extensions.ts", "build": "yarn run webpack --config webpack/extensions.ts",
"build-docs": "yarn run typedoc", "build:docs": "yarn run typedoc",
"clean": "rm -rf dist/", "clean": "rm -rf dist/",
"prepare:dev": "yarn run build" "prepare:dev": "yarn run build"
}, },