From a12b5652c295f3769c80943a8f660ef259fb47d3 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Sun, 17 Nov 2024 16:16:49 +0100 Subject: [PATCH] Remove HydeFront workflows as there is no longer anything to build --- .../.github/workflows/dependency-review.yml | 20 ---------- .../hydefront/.github/workflows/devskim.yml | 34 ---------------- .../hydefront/.github/workflows/node.js.yml | 39 ------------------- 3 files changed, 93 deletions(-) delete mode 100644 packages/hydefront/.github/workflows/dependency-review.yml delete mode 100644 packages/hydefront/.github/workflows/devskim.yml delete mode 100644 packages/hydefront/.github/workflows/node.js.yml diff --git a/packages/hydefront/.github/workflows/dependency-review.yml b/packages/hydefront/.github/workflows/dependency-review.yml deleted file mode 100644 index 0e72a00efcd..00000000000 --- a/packages/hydefront/.github/workflows/dependency-review.yml +++ /dev/null @@ -1,20 +0,0 @@ -# Dependency Review Action -# -# This Action will scan dependency manifest files that change as part of a Pull Reqest, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging. -# -# Source repository: https://github.com/actions/dependency-review-action -# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement -name: 'Dependency Review' -on: [pull_request] - -permissions: - contents: read - -jobs: - dependency-review: - runs-on: ubuntu-latest - steps: - - name: 'Checkout Repository' - uses: actions/checkout@v3 - - name: 'Dependency Review' - uses: actions/dependency-review-action@v1 diff --git a/packages/hydefront/.github/workflows/devskim.yml b/packages/hydefront/.github/workflows/devskim.yml deleted file mode 100644 index b77d398ac0a..00000000000 --- a/packages/hydefront/.github/workflows/devskim.yml +++ /dev/null @@ -1,34 +0,0 @@ -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -name: DevSkim - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - schedule: - - cron: '24 18 * * 1' - -jobs: - lint: - name: DevSkim - runs-on: ubuntu-20.04 - permissions: - actions: read - contents: read - security-events: write - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Run DevSkim scanner - uses: microsoft/DevSkim-Action@v1 - - - name: Upload DevSkim scan results to GitHub Security tab - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: devskim-results.sarif diff --git a/packages/hydefront/.github/workflows/node.js.yml b/packages/hydefront/.github/workflows/node.js.yml deleted file mode 100644 index e4b668cbf0e..00000000000 --- a/packages/hydefront/.github/workflows/node.js.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This workflow will do a clean installation of node dependencies, cache/restore them, build the compiled assets, and push them. -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - -name: Build Assets - -on: - push: - branches: [ master ] - -jobs: - build-assets: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - cache: 'npm' - - - name: Install Node.js dependencies - run: npm ci - - - name: Build assets for production - run: npm run build - - - name: Upload artifacts - uses: actions/upload-artifact@v4 - with: - name: 'assets' - path: 'dist' - - - name: Push assets to GitHub - uses: EndBug/add-and-commit@v9 - with: - add: 'dist' - message: 'Update assets'