Skip to content

Merge pull request #69 from nelson-parente/vanta/cve-updates-1 #30

Merge pull request #69 from nelson-parente/vanta/cve-updates-1

Merge pull request #69 from nelson-parente/vanta/cve-updates-1 #30

name: javascript invocation quickstart
on:
push:
branches:
- main
paths:
- .github/workflows/invoke_javascript.yaml
- invocation/javascript/**
pull_request:
branches:
- main
paths:
- .github/workflows/invoke_javascript.yaml
- invocation/javascript/**
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: "read"
id-token: "write"
environment: shared-production
if: github.repository_owner == 'diagridio'
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: build local
run: |
cd invocation/javascript
npm install --prefix ./client && npm install --prefix ./server
- name: Configure AWS credentials
if: github.event_name != 'pull_request'
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ vars.AWS_CI_ROLE }}
aws-region: ${{ vars.AWS_CI_REGION }}
- name: Login to Amazon ECR
if: github.event_name != 'pull_request'
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
with:
registry-type: public
- name: Set up Docker Buildx
if: github.event_name != 'pull_request'
uses: docker/setup-buildx-action@v3.6.1
- name: build and push client container
if: github.event_name != 'pull_request'
working-directory: invocation/javascript/server
run: |
docker buildx build --platform linux/amd64,linux/arm64 -t ${{ steps.login-ecr.outputs.registry }}/${{ vars.AWS_PUBLIC_ECR_ALIAS }}/invoke-javascript-client-qs .
- name: build and push server container
if: github.event_name != 'pull_request'
working-directory: invocation/javascript/server
run: |
docker buildx build --platform linux/amd64,linux/arm64 -t ${{ steps.login-ecr.outputs.registry }}/${{ vars.AWS_PUBLIC_ECR_ALIAS }}/invoke-javascript-server-qs .