Skip to content

🎉 init(ci): deploy v2 frontend (#256) #8

🎉 init(ci): deploy v2 frontend (#256)

🎉 init(ci): deploy v2 frontend (#256) #8

Workflow file for this run

name: Deploy Nuxt Frontend
on: [push]
defaults:
run:
working-directory: ./client-ui-thing
jobs:
build:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v1
- name: Set up Node.js
uses: actions/setup-node@v2

Check failure on line 17 in .github/workflows/deploy_v2.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy_v2.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
with:
node-version: 18
- name: Install npm dependencies
run: npm install
- name: Run build task
run: npm run build