Skip to content

Commit

Permalink
Merge pull request #658 from CruGlobal/GT-1880-migrate-travis-ci-to-g…
Browse files Browse the repository at this point in the history
…ithub-actions

Migrate Travis Ci to Github actions - init commit
  • Loading branch information
dr-bizz authored Jan 26, 2023
2 parents addd90c + ff7118b commit 2388cef
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 75 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/ci.yml
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"
75 changes: 0 additions & 75 deletions .travis.yml

This file was deleted.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:stage": "ng build -c staging",
"build:prod": "ng build -c production",
"test": "ng test",
"test:codecov": "ng test --watch=false --browsers=ChromeHeadless --code-coverage",
"lint": "ng lint",
"lint:type": "ng lint --type-check",
"e2e": "ng e2e",
"prettier:check": "prettier '{{src,e2e,__{tests,mocks}__}/**/*.{js,json,ts,tsx,html},./*.{js,json,ts,tsx,yml,html}}' --list-different",
"prettier:write": "prettier '{{src,e2e,__{tests,mocks}__}/**/*.{js,json,ts,tsx,html},./*.{js,json,ts,tsx,yml,html}}' --write"
Expand Down

0 comments on commit 2388cef

Please sign in to comment.