Skip to content

Bump @babel/traverse from 7.20.1 to 7.23.2 #164

Bump @babel/traverse from 7.20.1 to 7.23.2

Bump @babel/traverse from 7.20.1 to 7.23.2 #164

Workflow file for this run

name: CI
on: [pull_request, workflow_dispatch]
jobs:
install_all_default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
- name: Test
run: |
ls -l ~/bin
helmfile --version
kubectl version --client
helm version
helm plugin list
install_helmfile_with_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
with:
helmfile-version: "v0.135.0"
- name: Test
run: |
ls -l ~/bin
helmfile --version
kubectl version --client
helm version
helm plugin list
install_helm_plugins_without_helm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
with:
install-kubectl: no
install-helm: no
- name: Test
run: |
ls -l ~/bin
helmfile --version
kubectl version --client
helm version
helm plugin list
install_only_helmfile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
with:
install-kubectl: no
install-helm: no
install-helm-plugins: no
- name: Test
run: |
ls -l ~/bin
helmfile --version
kubectl version --client
helm version
helm plugin list
install_addtional_plugins:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup helmfile
uses: ./
with:
additional-helm-plugins: https://github.com/aslafy-z/helm-git --version 0.10.0,https://github.com/zendesk/helm-secrets
- name: Test
run: |
ls -l ~/bin
helmfile --version
kubectl version --client
helm version
helm plugin list