build(deps): bump unplugin-vue-components from 0.26.0 to 0.27.0 #736
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build template and deploy to vercel | |
on: push | |
jobs: | |
yarn_build: | |
name: Build template | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: jojomatik/nuxt-3-base | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install dependencies and correct version of nuxt-bundle | |
run: yarn add ${{ github.repository }}#${{ github.ref }} | |
- name: Build | |
run: yarn build | |
- name: Lint | |
run: yarn lint | |
vercel_deploy: | |
name: Deploy template | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: jojomatik/nuxt-3-base | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install Vercel CLI | |
run: npm install --global vercel@latest | |
- name: Install dependencies and correct version of nuxt-bundle | |
run: yarn add ${{ github.repository }}#${{ github.ref }} | |
- name: Pull Vercel Environment Information | |
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Build Project Artifacts | |
run: vercel build --token=${{ secrets.VERCEL_TOKEN }} | |
env: | |
NITRO_PRESET: vercel | |
NUXT_IMAGE_PROVIDER: vercel | |
- name: Deploy Project Artifacts to Vercel (Preview) | |
if: github.ref != 'refs/heads/main' | |
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Deploy Project Artifacts to Vercel (Prod) | |
if: github.ref == 'refs/heads/main' | |
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} | |