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