Skip to content

feature: prepare mvp #16

feature: prepare mvp

feature: prepare mvp #16

Workflow file for this run

name: Testing
on:
push:
branches:
- "*"
- "!master"
jobs:
helm:
runs-on: ubuntu-latest
steps:
- name: clone core
uses: actions/checkout@v3
with:
path: "core"
- name: clone conditions-text
uses: actions/checkout@v3
with:
path: "conditions-text"
repository: awakari/conditions-text
token: {{ secrets.CLONE_PAT }}

Check failure on line 25 in .github/workflows/testing.yaml

View workflow run for this annotation

GitHub Actions / Testing

Invalid workflow file

The workflow is not valid. .github/workflows/testing.yaml (Line: 25, Col: 18): A mapping was not expected
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.12.0
- name: Lint Helm Chart
run: |
mkdir helm/core/charts
cd helm/core/charts
for i in conditions-text matches messages queue-nats reader subscriptions-proxy semaphore-nats writer; do helm package ../../../../$i/helm/$i; done
cd ../../..
helm dependency update helm/core
helm lint helm/core