Merge pull request #80 from SJSURoboticsTeam/state-mgmt-fix-arm #22
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: Mission Control UI CICD | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- 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: ${{ secrets.AWS_REGION }} | |
- name: Installing frontend... | |
run: npm install | |
- name: Building frontend... | |
run: npm run build | |
- name: Running tests... | |
run: npm run test | |
- name: Deploy static site to S3 bucket | |
run: aws s3 sync ./build s3://mission-control-ui --delete |