Skip to content

test: actions test

test: actions test #25

Workflow file for this run

name: HybridJGS-FE
on:
push:
branches:
- test/gitAction
jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
working-directory: ./client
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ap-northeast-2
- name: npm install
run: npm install
- name: npm build
run: npm run build
- name: Deploy static site to S3 bucket
run: aws s3 sync ./client s3://hybridjgs-frontend