Skip to content

Commit 9925caa

Browse files
committed
run actual tests now
1 parent 7a84246 commit 9925caa

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

.github/workflows/test.yml

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,25 @@ jobs:
3030

3131
steps:
3232
- uses: actions/checkout@v4
33-
- name: Change to Directory
34-
run: cd ${{ matrix.directory }}
33+
- name: Setup Nodejs
34+
uses: actions/setup-node@v3
35+
with:
36+
node-version: 18
37+
- name: Install LocalStack
38+
run: pip install localstack awscli-local[ver1] virtualenv
39+
- name: Setup config
40+
run: |
41+
echo "Configuring git for codecommit sample"
42+
git config --global user.email "[email protected]"
43+
git config --global user.name "Localstack Pro-Samples"
44+
- name: Pull the latest docker image
45+
run: docker pull localstack/localstack-pro
3546
- name: Execute a simple test
47+
timeout-minutes: 10
3648
run: |
37-
ls -a
38-
pwd
49+
cd ${{ matrix.directory }}
50+
make test-ci
3951
env:
40-
AWS_ACCESS_KEY_ID: key
41-
AWS_SECRET_ACCESS_KEY: secret
52+
LOCALSTACK_API_KEY: ${{ secrets.TEST_LOCALSTACK_API_KEY }}
53+
DEBUG: 1
54+
DNS_ADDRESS: 127.0.0.1

0 commit comments

Comments
 (0)