Improvement/artesca 13131 enable typescript checking #1080
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: security | |
on: | |
push: | |
branches: [development/*, stabilization/*, hotfix/*] | |
release: | |
types: [published] | |
pull_request: | |
branches: [development/*, stabilization/*, hotfix/*] | |
schedule: | |
- cron: "0 8 * * 1" # Monday - 8am - UTC | |
workflow_dispatch: | |
jobs: | |
build-ui: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: "20" | |
cache: "npm" | |
- name: install dependencies | |
run: npm ci | |
- name: build assets | |
run: npm run build | |
- name: Login to GitHub Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push zenko ui | |
uses: docker/[email protected] | |
with: | |
push: true | |
context: . | |
tags: | | |
ghcr.io/${{ github.repository }}:${{ github.sha }} | |
trivy-zenko-ui: | |
needs: build-ui | |
name: Trivy Vulnerability Scan for Code for Zenko-ui | |
uses: scality/workflows/.github/workflows/trivy.yaml@v1 | |
with: | |
name: zenko-ui | |
namespace: scality |