Skip to content

Bump vite from 2.9.16 to 2.9.17 (#37) #11

Bump vite from 2.9.16 to 2.9.17 (#37)

Bump vite from 2.9.16 to 2.9.17 (#37) #11

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code 🛎️
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Run npm ci and build
run: |
npm ci
npm run build
- name: Deploy to gh-pages 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.
clean: true
single-commit: true