From daf6519a5bfb807908ac071cab45860875ead74e Mon Sep 17 00:00:00 2001 From: Nilanchala Date: Fri, 27 Oct 2023 01:59:18 +0100 Subject: [PATCH] Update jekyll-gh-pages.yml --- .github/workflows/jekyll-gh-pages.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index f4a4101..7785248 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -47,12 +47,15 @@ jobs: needs: build steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '20.x' - name: Install Node dependencies - run: | - npm install - - name: Analysing the code with pylint - run: | - npm run build + run: npm ci + - name: Building node modules + run: npm run build - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2