File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments