Skip to content

Removed unused

Removed unused #2

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- main # Set to your default branch
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14' # Set to your Node version
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.