Skip to content

chore(deps-dev): bump vite from 5.4.2 to 5.4.3 (#256) #184

chore(deps-dev): bump vite from 5.4.2 to 5.4.3 (#256)

chore(deps-dev): bump vite from 5.4.2 to 5.4.3 (#256) #184

Workflow file for this run

name: Build and deploy to GH Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
if: github.repository == 'mdn/todo-vue'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- run: npm i
- run: npm run build
- name: Setup pages
uses: actions/configure-pages@v5
- name: Upload build artifacts
uses: actions/upload-pages-artifact@v3
with:
# Upload dist directory
path: "dist"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4