[Snyk] Security upgrade tmp from 0.2.1 to 0.2.2 #18
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
name: Build/Lint/Unit Tests CI | |
on: | |
pull_request: | |
branches: | |
# Run CI on PRs to master, develop or feature branches | |
- master | |
- develop | |
- 'feat/**' | |
jobs: | |
build: | |
name: Build/Lint/Unit Tests CI | |
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_ACCESS_KEY_SECRET }} | |
aws-region: us-east-1 | |
- name: Run CodeBuild | |
uses: aws-actions/[email protected] | |
with: | |
# won't change aws ci name as that is not editable | |
project-name: thoum-ci | |
env-vars-for-codebuild: | | |
version_check_branch | |
env: | |
version_check_branch: ${{ github.base_ref }} |