From f7b847788f654975aaefc7892426ad0d0797e050 Mon Sep 17 00:00:00 2001 From: wale afolabi Date: Thu, 27 Jul 2023 11:15:01 -0400 Subject: [PATCH] test deploy --- .github/workflows/ci-deploy-pages.yml | 10 ++++++++++ .github/workflows/ci-include-breaking.yml | 23 ----------------------- 2 files changed, 10 insertions(+), 23 deletions(-) delete mode 100644 .github/workflows/ci-include-breaking.yml diff --git a/.github/workflows/ci-deploy-pages.yml b/.github/workflows/ci-deploy-pages.yml index e66e2dc..3f4629d 100644 --- a/.github/workflows/ci-deploy-pages.yml +++ b/.github/workflows/ci-deploy-pages.yml @@ -33,6 +33,16 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Use Node 14 + uses: actions/setup-node@v1 + with: + node-version: 14.x + - name: Install + run: npm install + - name: Lint + run: npm run lint + - name: Build Report + run: DID_WG_INCLUDE_BREAKING=1 npm run test-and-generate-report - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact diff --git a/.github/workflows/ci-include-breaking.yml b/.github/workflows/ci-include-breaking.yml deleted file mode 100644 index 63e2120..0000000 --- a/.github/workflows/ci-include-breaking.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Include Breaking -on: [push] -jobs: - ci: - runs-on: ubuntu-latest - steps: - - name: Begin CI... - uses: actions/checkout@v2 - - name: Use Node 14 - uses: actions/setup-node@v1 - with: - node-version: 14.x - - name: Install - run: npm install - - name: Lint - run: npm run lint - - name: Build Report - run: DID_WG_INCLUDE_BREAKING=1 npm run test-and-generate-report - - name: Deploy Report - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs