Skip to content

chore(deps-dev): bump @babel/eslint-parser from 7.23.10 to 7.24.7 #306

chore(deps-dev): bump @babel/eslint-parser from 7.23.10 to 7.24.7

chore(deps-dev): bump @babel/eslint-parser from 7.23.10 to 7.24.7 #306

Workflow file for this run

name: Vercel Preview Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches-ignore:
- main
paths-ignore:
- README.md
- LICENSE
- .github/**
- .vscode/**
- .vercel/**
- .next/**
- .docusaurus/**
- .changeset/**
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: preview
url: ${{ steps.deploy.outputs.url }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Vercel CLI
run: npm install --global vercel@latest
- 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 }}
- name: Deploy Project Artifacts to Vercel
run: echo "url=$(vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }})" >> $GITHUB_OUTPUT
id: deploy