Add Vite CI/CD workflow

This commit is contained in:
BlackWolfNews 2025-04-13 18:12:16 -06:00
parent 9a401d53a8
commit 2f2539d00b

17
.github/workflows/deploy.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Vite CI/CD
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn install
- run: yarn build
- name: Archive Artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: dist