Skip to content

fix: create github workflow #1

fix: create github workflow

fix: create github workflow #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create public folder for build output
run: mkdir -p public
- name: Run npm install
run: npm install
- name: Run npm build
run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
branch: main
folder: public