This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
67 lines (56 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
name: Test
concurrency:
group: test
cancel-in-progress: false
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
container:
image: public.ecr.aws/jsii/superchain:1-bookworm-slim-node20
steps:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Cache node modules
id: cache-npm
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: .npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: |
set -euo pipefail
make install
(cd test && make install)
sudo apt-get update
sudo apt-get install -y tree
- name: Deploy & Destroy
run: cd test && make deploy DESTROY
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: Build packages w/ jsii-pacmak
run: |
set -euo pipefail
npx jsii-pacmak --verbose
tree dist