-
Notifications
You must be signed in to change notification settings - Fork 22
37 lines (36 loc) · 939 Bytes
/
ci.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
name: CI
on:
pull_request:
branches-ignore:
- dependency-updates
workflow_dispatch:
push:
branches:
- main
jobs:
CI:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }}
aws-region: eu-west-1
- uses: actions/setup-node@v4 # This is required by cdk
with:
cache: 'yarn'
cache-dependency-path: 'cdk/yarn.lock'
node-version-file: '.nvmrc'
- uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'corretto'
cache: 'sbt'
- name: CI
run: |
LAST_TEAMCITY_BUILD=3006
export GITHUB_RUN_NUMBER=$(( $GITHUB_RUN_NUMBER + $LAST_TEAMCITY_BUILD ))
./script/ci