-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (42 loc) · 1.24 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: "build-test"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- master
- DEVOP-32
jobs:
# build: # make sure build/ci work properly
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 12
# - run: |
# npm install
# npm npm run build
# npm run pack
# npm run coverage
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: peachjar/action-install-deploy-tools@v4
with:
githubUsername: ${{ secrets.GITHUB_DEPLOY_USER }}
githubToken: ${{ secrets.GITHUB_DEPLOY_TOKEN }}
- run: |
pwd
echo "KILAHUEA"
ls ../kilauea/kubefiles/kauai/kubectl_configs/ || true
ls ./kilauea/kubefiles/kauai/kubectl_configs/ || true
- uses: ./
with:
awsAccessKeyId: ${{ secrets.AWS_ACCESS_KEY_ID }}
awsSecretAccessKey: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
environment: kauai
helmChartPath: echo-server/
helmReleaseName: echo-server
dockerImage: hashicorp/http-echo
dockerTag: latest