Skip to content

Update README.md

Update README.md #69

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18.12
cache: npm
- run: |
npm install
npm run lint
npm run build
- uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: dist