Skip to content

Commit

Permalink
Check older node version
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanHCenalmor committed Oct 17, 2024
1 parent 00a50f3 commit 9e3f8b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
id-token: write

jobs:
build:
Build_webpage:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand All @@ -20,7 +20,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '14' # Sets up Node.js version 14
node-version: '12' # Sets up Node.js version 14

- name: Cache dependencies
uses: actions/cache@v4
Expand All @@ -47,12 +47,12 @@ jobs:


# Deployment job
deploy:
Deploy_webpage:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
needs: Build_webpage
steps:
- name: Deploy to GitHub Pages
id: deployment
Expand Down

0 comments on commit 9e3f8b7

Please sign in to comment.