diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index a224d106..ad9dfb30 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -15,6 +15,8 @@ on: jobs: build-and-deploy: runs-on: ubuntu-latest + env: + HUSKY: 0 steps: - name: Checkout Repository uses: actions/checkout@v4 @@ -23,8 +25,14 @@ jobs: uses: actions/setup-node@v4 with: node-version: '22.2.0' - - run: npm ci - - run: npm run build + cache: 'npm' + + - name: Install dependencies + run: npm ci --prefer-offline --no-audit + timeout-minutes: 10 + + - name: Build + run: npm run build - name: Check GitHub Pages status uses: crazy-max/ghaction-github-status@v3