Skip to content

Commit

Permalink
feat: add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KrijnL committed Aug 23, 2024
1 parent c3e2aad commit 392de91
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: "Build and Deploy"
on:
push:
branches:
- main

pull_request:
types:
- opened
- synchronize

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Build:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
include:
- name: dashboard-filter-panel
outputFolder: dist/dashboard-filter-panel/browser/
- name: drag-n-drop-chart-library
outputFolder: build/
- name: report-builder
outputFolder: dist/report-builder/browser/
- name: wearables-dashboard
outputFolder: dist/

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3

- name: Cache node modules
uses: actions/cache@v2
with:
path: ${{ matrix.name }}/node_modules
key: ${{ runner.os }}-node-${{ matrix.name }}-${{ hashFiles(format('{0}/{1}', matrix.name, 'package-lock.json')) }}

- name: Build front end
run: |
cd ${{ matrix.name }}
npm ci
npm run build:ci
- name: Upload to S3
uses: shallwefootball/s3-upload-action@master
# if: github.event_name != 'pull_request'
with:
aws_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY}}
aws_bucket: "showcases.luzmo.com"
source_dir: ${{ matrix.name }}/${{ matrix.outputFolder }}
destination_dir: ${{ matrix.name }}

# Invalidate Cloudfront:

0 comments on commit 392de91

Please sign in to comment.