Skip to content

Commit

Permalink
feat: run CI on CodeBuild using GitHub Actions (#1265)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jun 15, 2020
1 parent 33364cb commit 57a35a7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/codebuild-pr-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.CI_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.CI_AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-2
- name: Run CodeBuild
uses: aws-actions/aws-codebuild-run-project@v1.0.2
with:
project-name: aws-sdk-js-modular-pr-test

0 comments on commit 57a35a7

Please sign in to comment.