-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #658 from CruGlobal/GT-1880-migrate-travis-ci-to-g…
…ithub-actions Migrate Travis Ci to Github actions - init commit
- Loading branch information
Showing
3 changed files
with
69 additions
and
75 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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [master, staging] | ||
pull_request: | ||
branches: [master, staging] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
CHROME_BIN: /usr/bin/google-chrome | ||
|
||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
jobs: | ||
test: | ||
name: Checks & Build Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 12 | ||
- name: Install Dependenices | ||
run: yarn | ||
- name: Run Lint & Prettier Tests | ||
run: | | ||
yarn lint:type | ||
yarn prettier:check | ||
- name: Build Staging | ||
run: yarn build:stage | ||
- name: Build Production | ||
run: yarn build:prod | ||
- name: Run Test with CodeCov | ||
run: yarn test:codecov | ||
- name: Code coverage test | ||
uses: codecov/[email protected] | ||
|
||
deploy: | ||
name: Deployment | ||
runs-on: ubuntu-latest | ||
if: | | ||
(github.ref == 'refs/heads/staging' || github.ref == 'refs/heads/master') | ||
&& github.event_name == 'push' | ||
environment: ${{ github.ref == 'refs/heads/master' && 'prod' || 'stage' }} | ||
needs: test | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 12 | ||
- name: Install Dependenices | ||
run: yarn | ||
- name: Build | ||
run: yarn build:${{vars.ENVIRONMENT}} | ||
- uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
role-to-assume: '${{ secrets.AWS_IAM_ROLE_ARN }}' | ||
aws-region: us-east-1 | ||
- run: aws s3 sync dist s3://${{ secrets.AWS_S3_BUCKET }} --region us-east-1 --acl public-read --cache-control "max-age=300" |
This file was deleted.
Oops, something went wrong.
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