From dbfb531b000eca5e1989ac8680a997f9a144bdca Mon Sep 17 00:00:00 2001 From: Sean Prashad <13009507+SeanPrashad@users.noreply.github.com> Date: Fri, 29 Jul 2022 17:07:12 -0400 Subject: [PATCH] Remove extra build steps --- .github/workflows/github-pages.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index e5dd8230..79b1489a 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -4,6 +4,7 @@ on: push: branches: - master + pull_request: # Allows manual runs from the Actions tab workflow_dispatch: @@ -19,16 +20,6 @@ jobs: - name: Checkout Repo uses: actions/checkout@v3 - - name: Install NodeJS - uses: actions/setup-node@v3 - with: - node-version: '14' - - - name: Build Static Files - run: | - npm ci - npm run build - - name: Build Artifact uses: actions/jekyll-build-pages@v1