Skip to content

Commit

Permalink
fake aws credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
j0k3r committed Oct 22, 2024
1 parent 5983fab commit 1ffd353
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,14 @@ jobs:
- name: 'Install Serverless v4'
run: npm install serverless@4

- name: 'Setup AWS credentials'
run: |
- mkdir -p ~/.aws
- echo "[default]" > ~/.aws/credentials
- echo "aws_access_key_id = xx" >> ~/.aws/credentials
- echo "aws_secret_access_key = xx" >> ~/.aws/credentials
- echo "region = us-east-1" >> ~/.aws/credentials
- name: 'Run tests'
run: npm run test tests/e2e/e2e.test.js
env:
Expand Down

0 comments on commit 1ffd353

Please sign in to comment.