bot: check test ci #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/bot-ci.yml | ||
name: Bot CI Pipeline | ||
on: | ||
push: | ||
paths: | ||
- "bot/**" | ||
# pull_request: | ||
# paths: | ||
# - "bot/**" | ||
jobs: | ||
lint: | ||
uses: ./.github/workflows/lint.yml | ||
with: | ||
app_path: "bot" | ||
test: | ||
uses: ./.github/workflows/test.yml | ||
Check failure on line 20 in .github/workflows/bot-ci.yml GitHub Actions / Bot CI PipelineInvalid workflow file
|
||
with: | ||
app_path: "./bot" | ||
node_version: "20" | ||
cache_dependency_path: "./bot/package-lock.json" | ||
build-push: | ||
needs: [lint, test] | ||
# needs: [lint] | ||
uses: ./.github/workflows/build-push.yml | ||
with: | ||
app_name: "bot" | ||
context: "./bot" | ||
dockerfile: "./bot/Dockerfile" |