Skip to content

vue-cli from node_modules ? #260

vue-cli from node_modules ?

vue-cli from node_modules ? #260

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 17
cache: 'npm'
# - uses: actions/setup-node@v3
# with:
# node-version: 17

Check failure on line 23 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
- name: Install dependencies
run: |
# npm install -g @vue/cli-service-global
npm install --production
- name: Build
run: |
npm run build
- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@v4.3.0
with:
branch: gh-pages
folder: dist
git-config-name: "GitHub Actions"
git-config-email: "actions@github.com"