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