From b97d0a894143da3d86bba654157a7dbcfdd411f9 Mon Sep 17 00:00:00 2001 From: Enea Jahollari Date: Fri, 8 Mar 2024 13:47:31 +0100 Subject: [PATCH] fix: remove unused ci workflows --- .github/workflows/cloudflare-hosting-pr.yml | 32 --------------------- .github/workflows/ng-universal-pr.yml | 31 -------------------- 2 files changed, 63 deletions(-) delete mode 100644 .github/workflows/cloudflare-hosting-pr.yml delete mode 100644 .github/workflows/ng-universal-pr.yml diff --git a/.github/workflows/cloudflare-hosting-pr.yml b/.github/workflows/cloudflare-hosting-pr.yml deleted file mode 100644 index 92d1a3cd..00000000 --- a/.github/workflows/cloudflare-hosting-pr.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: E2E Cloudflare Pages Preview Channel on PR -on: pull_request -jobs: - build_and_cloudflare_preview: - if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' - runs-on: ubuntu-latest - steps: - - name: Checkout the repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version-file: 'package.json' - cache: npm - - - name: Install dependencies - run: npm ci - - - name: Production build for static file hosting (client only) - run: npm run nx run cloudflare-worker:user-flow:production -- --format=md - - # use preview deployment - - name: Test cloudflare preview pages hosting - id: cloudflare-preview-pages-hosting - uses: push-based/user-flow-gh-action@v0.4.1 - with: - verbose: on - commentId: cloudflare-preview-pages-hosting - onlyComments: on - outPath: ./dist/user-flow/cloudflare-worker - rcPath: projects/cloudflare-worker/.user-flowrc.action-hack.json diff --git a/.github/workflows/ng-universal-pr.yml b/.github/workflows/ng-universal-pr.yml deleted file mode 100644 index e254f69b..00000000 --- a/.github/workflows/ng-universal-pr.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: E2E NG Universal Express on PR -on: pull_request -jobs: - build_and_ng-universal-express: - if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' - runs-on: ubuntu-latest - steps: - - name: Checkout the repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version-file: 'package.json' - cache: npm - - - name: Install dependencies - run: npm ci - - - name: Production build for static file hosting (client + prerender) - run: npm run nx run ng-universal-express:user-flow:production -- --format=md - - - name: Test ng-universal-express - id: firebase-preview-channel-hosting - uses: push-based/user-flow-gh-action@v0.4.1 - with: - verbose: on - commentId: ng-universal-express - onlyComments: on - outPath: ./dist/user-flow/ng-universal-express - rcPath: ./projects/ng-universal-express/.user-flowrc.json