generated from int128/typescript-actions-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 7
69 lines (62 loc) · 1.99 KB
/
git-push-service.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: git-push-service
on:
pull_request:
paths:
- git-push-service/**
- '*.json'
- '*.yaml'
- .github/workflows/git-push-service.yaml
push:
branches:
- main
paths:
- git-push-service/**
- '*.json'
- '*.yaml'
- .github/workflows/git-push-service.yaml
defaults:
run:
working-directory: git-push-service
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20
- run: corepack enable pnpm
- run: pnpm i
- run: pnpm test
e2e-test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20
- run: corepack enable pnpm
- run: pnpm i
- run: pnpm build
- uses: ./git-push-service
with:
manifests: |
${{ github.workspace }}/git-push-service/tests/fixtures/a/generated.yaml
overlay: e2e-git-push-service
namespace: ns-${{ github.run_number }}
service: a
destination-repository: ${{ github.repository }}
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ns/monorepo-deploy-actions/e2e-git-push-service/ns-${{ github.run_number }}
path: git-push-service/actual
- run: find actual -type f
- run: test -f actual/applications/ns-${{ github.run_number }}--a.yaml
- run: test -f actual/services/a/generated.yaml
- name: clean up the branch
continue-on-error: true
if: always()
run: |
git push origin --delete refs/heads/ns/monorepo-deploy-actions/e2e-git-push-service/ns-${{ github.run_number }}