Skip to content

installed gh-pages

installed gh-pages #6

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # Use the version you prefer
- name: Install Dependencies
run: npm install
- name: Start
run: npm run start
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3