-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (91 loc) · 2.78 KB
/
super-mode.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: Build super-mode and upload to riff raff
on:
pull_request:
branches:
- "**"
push:
branches:
- main
jobs:
super-mode-build:
if: >-
(github.event.pull_request.head.repo.owner.login == 'guardian' ||
github.event_name == 'push')
name:
super mode build
# These permissions are required by guardian/actions-riff-raff
permissions:
id-token: write
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Env
run: env
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: 'yarn'
cache-dependency-path: ./super-mode-calculator/yarn.lock
node-version-file: "super-mode-calculator/.nvmrc"
- name: Yarn install, lint, build
working-directory: ./super-mode-calculator
run: |
yarn install
yarn lint
yarn run build
- name: Copy files to Riff Raff package
working-directory: ./super-mode-calculator
run: |
cp package.json target
pushd target
yarn install --production
zip -r super-mode ./*
popd
- name: Build cdk
working-directory: ./cdk
run: |
yarn install
yarn lint
yarn test
yarn synth
- name: super-mode riff-raff
uses: guardian/actions-riff-raff@v4
with:
app: super-mode
roleArn: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
config: |
stacks:
- support
regions:
- eu-west-1
allowedStages:
- CODE
- PROD
deployments:
super-mode-cloudformation:
type: cloud-formation
app: super-mode
parameters:
cloudFormationStackName: super-mode
templateStagePaths:
CODE: SuperModeCalculator-CODE.template.json
PROD: SuperModeCalculator-PROD.template.json
cloudFormationStackByTags: false
prependStackToCloudFormationStackName: true
super-mode:
type: aws-lambda
parameters:
prefixStack: false
fileName: super-mode.zip
functionNames:
- super-mode-
contentDirectories: |
super-mode-cloudformation:
- cdk/cdk.out/SuperModeCalculator-CODE.template.json
- cdk/cdk.out/SuperModeCalculator-PROD.template.json
super-mode:
- super-mode-calculator/target/super-mode.zip