Skip to content

Commit 57a35a7

Browse files
authored
feat: run CI on CodeBuild using GitHub Actions (#1265)
1 parent 33364cb commit 57a35a7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Configure AWS Credentials
14+
uses: aws-actions/configure-aws-credentials@v1
15+
with:
16+
aws-access-key-id: ${{ secrets.CI_AWS_ACCESS_KEY_ID }}
17+
aws-secret-access-key: ${{ secrets.CI_AWS_SECRET_ACCESS_KEY }}
18+
aws-region: us-west-2
19+
- name: Run CodeBuild
20+
uses: aws-actions/[email protected]
21+
with:
22+
project-name: aws-sdk-js-modular-pr-test

0 commit comments

Comments
 (0)