-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a84246
commit 5da104a
Showing
1 changed file
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,10 +32,24 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: Change to Directory | ||
run: cd ${{ matrix.directory }} | ||
- name: Setup Nodejs | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Install LocalStack | ||
run: pip install localstack awscli-local[ver1] virtualenv | ||
- name: Setup config | ||
run: | | ||
echo "Configuring git for codecommit sample" | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Localstack Pro-Samples" | ||
- name: Pull the latest docker image | ||
run: docker pull localstack/localstack-pro | ||
- name: Execute a simple test | ||
timeout-minutes: 10 | ||
run: | | ||
ls -a | ||
pwd | ||
make test-ci | ||
env: | ||
AWS_ACCESS_KEY_ID: key | ||
AWS_SECRET_ACCESS_KEY: secret | ||
LOCALSTACK_API_KEY: ${{ secrets.TEST_LOCALSTACK_API_KEY }} | ||
DEBUG: 1 | ||
DNS_ADDRESS: 127.0.0.1 |