Skip to content

Commit 5da104a

Browse files
committed
run actual tests now
1 parent 7a84246 commit 5da104a

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,24 @@ jobs:
3232
- uses: actions/checkout@v4
3333
- name: Change to Directory
3434
run: cd ${{ matrix.directory }}
35+
- name: Setup Nodejs
36+
uses: actions/setup-node@v3
37+
with:
38+
node-version: 18
39+
- name: Install LocalStack
40+
run: pip install localstack awscli-local[ver1] virtualenv
41+
- name: Setup config
42+
run: |
43+
echo "Configuring git for codecommit sample"
44+
git config --global user.email "[email protected]"
45+
git config --global user.name "Localstack Pro-Samples"
46+
- name: Pull the latest docker image
47+
run: docker pull localstack/localstack-pro
3548
- name: Execute a simple test
49+
timeout-minutes: 10
3650
run: |
37-
ls -a
38-
pwd
51+
make test-ci
3952
env:
40-
AWS_ACCESS_KEY_ID: key
41-
AWS_SECRET_ACCESS_KEY: secret
53+
LOCALSTACK_API_KEY: ${{ secrets.TEST_LOCALSTACK_API_KEY }}
54+
DEBUG: 1
55+
DNS_ADDRESS: 127.0.0.1

0 commit comments

Comments
 (0)