Skip to content

Infinite build process #69190

Answered by hovo92000
hovo92000 asked this question in npm
Oct 4, 2023 · 2 comments · 2 replies
Discussion options

You must be logged in to vote

I added the node version and that solved the problem, but I don't know why my build was in an infinite loop.
this is my updated yml file

name: FTP Deploy

on:
  push:
    branches:
      - main  # Adjust to your main branch name

jobs:
  deploy:
    runs-on: ubuntu-latest

steps:
  - name: Use Node.js 19.7.0
    uses: actions/setup-node@v3
    with:
      node-version: 19.7.0
      
  - name: Checkout Repository
    uses: actions/checkout@v3

  - name: Install dependencies
    run: npm install
    working-directory: frontend

  - name: Build Vue.js app
    run: npm run build
    working-directory: frontend

  - name: frontend
    uses: SamKirkland/[email protected]

    with:
     …

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@hovo92000
Comment options

Comment options

You must be logged in to vote
1 reply
@hovo92000
Comment options

Answer selected by hovo92000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
npm
Labels
Packages Host your dependencies, libraries, and production-ready code, right from your repository npm Tagging to track for future npm category
3 participants