-
Notifications
You must be signed in to change notification settings - Fork 0
108 lines (90 loc) · 4.36 KB
/
pr.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
103
104
105
106
107
108
name: PR checks
on:
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
jobs:
lint-build-and-test:
runs-on: ubuntu-latest
steps:
- run: echo "STAGE=pr-${{ github.event.number }}" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_STAGING }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_STAGING }}
aws-region: eu-central-1
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Dependencies
run: pnpm i
- name: Lint
run: pnpm lint
- name: Format
run: pnpm format:check
- name: Build
run: pnpm build --stage ${{ env.STAGE }}
- name: SIB
run: pnpm sib --pipeline
- name: Set secrets
run: |
npx sst secrets set SLACK_LOG_LEVEL "${{ secrets.SLACK_LOG_LEVEL_TEST }}" --stage ${{ env.STAGE }}
npx sst secrets set SLACK_BOT_TOKEN "${{ secrets.SLACK_BOT_TOKEN_TEST }}" --stage ${{ env.STAGE }}
npx sst secrets set SLACK_SIGNING_SECRET "${{ secrets.SLACK_SIGNING_SECRET_TEST }}" --stage ${{ env.STAGE }}
npx sst secrets set CORE_SLACK_CHANNEL_ID "${{ secrets.CORE_SLACK_CHANNEL_ID_TEST }}" --stage ${{ env.STAGE }}
npx sst secrets set RANDOM_SLACK_CHANNEL_ID "${{ secrets.RANDOM_SLACK_CHANNEL_ID_TEST }}" --stage ${{ env.STAGE }}
npx sst secrets set ADMIN_SLACK_USER_ID "${{ secrets.SLACK_USER_ID_TEST }}" --stage ${{ env.STAGE }}
npx sst secrets set DEPUTY_ADMIN_SLACK_USER_ID "${{ secrets.SLACK_USER_ID_TEST }}" --stage ${{ env.STAGE }}
- name: Deploy stack
run: pnpm run deploy --stage ${{ env.STAGE }}
- name: Extract stack outputs
id: sst-output
run: |
URL=$(jq -r '.["${{env.STAGE}}-birthday-slack-bot-MyStack"].ApiEndpoint' .sst/outputs.json)
echo "apiEndpoint=$URL" >> "$GITHUB_OUTPUT"
MIGRATION_FUNCTION=$(jq -r '.["${{env.STAGE}}-birthday-slack-bot-MyStack"].MigrationFunctionName' .sst/outputs.json)
echo "migrationFunction=$MIGRATION_FUNCTION" >> "$GITHUB_OUTPUT"
SECRET_ARN=$(jq -r '.["${{env.STAGE}}-birthday-slack-bot-StorageStack"].RDSSECRETARN' .sst/outputs.json)
echo "secretArn=$SECRET_ARN" >> "$GITHUB_OUTPUT"
CLUSTER_ARN=$(jq -r '.["${{env.STAGE}}-birthday-slack-bot-StorageStack"].RDSCLUSTERARN' .sst/outputs.json)
echo "clusterArn=$CLUSTER_ARN" >> "$GITHUB_OUTPUT"
DATABASE=$(jq -r '.["${{env.STAGE}}-birthday-slack-bot-StorageStack"].RDSDATABASE' .sst/outputs.json)
echo "database=$DATABASE" >> "$GITHUB_OUTPUT"
- name: Migration
run: pnpm migration:ci ${{ steps.sst-output.outputs.migrationFunction }}
- name: Run tests
run: pnpm test:ci
env:
VITE_API_URL: ${{ steps.sst-output.outputs.apiEndpoint }}
VITE_SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN_TEST }}
VITE_SLACK_SIGNING_SECRET: ${{ secrets.SLACK_SIGNING_SECRET_TEST }}
VITE_SLACK_USER_ID: ${{ secrets.SLACK_USER_ID_TEST }}
VITE_SLACK_BOT_USER_ID: ${{ secrets.SLACK_BOT_USER_ID_TEST }}
VITE_CORE_SLACK_CHANNEL_ID: ${{ secrets.CORE_SLACK_CHANNEL_ID_TEST }}
VITE_RANDOM_SLACK_CHANNEL_ID: ${{ secrets.RANDOM_SLACK_CHANNEL_ID_TEST }}
VITE_SLACK_DM_ID: ${{ secrets.SLACK_DM_ID_TEST }}
VITE_SLACK_TEAM_ID: ${{ secrets.SLACK_TEAM_ID_TEST }}
VITE_STAGE: ${{ env.STAGE }}
VITE_CI: true
VITE_DB_NAME: ${{ steps.sst-output.outputs.database }}
VITE_DB_SECRET_ARN: ${{ steps.sst-output.outputs.secretArn }}
VITE_DB_CLUSTER_ARN: ${{ steps.sst-output.outputs.clusterArn }}