update dockerfiles #35
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/hivemind-adapter-ci.yml | ||
name: Hivemind Adapter CI Pipeline | ||
on: | ||
push: | ||
paths: | ||
- "hivemind-adapter/**" | ||
# pull_request: | ||
# paths: | ||
# - "hivemind-adapter/**" | ||
jobs: | ||
lint: | ||
uses: ./.github/workflows/lint.yml | ||
Check failure on line 15 in .github/workflows/hivemind-adapter-ci.yml GitHub Actions / Hivemind Adapter CI PipelineInvalid workflow file
|
||
with: | ||
app_path: "hivemind-adapter" | ||
# test: | ||
# uses: ./.github/workflows/test.yml | ||
# 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: "hivemind-adapter" | ||
context: "./hivemind-adapter" | ||
dockerfile: "./hivemind-adapter/Dockerfile" |