Skip to content

v2.0.1

v2.0.1 #6

Workflow file for this run

name: GitHub Pages deploy
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: "16.x"
- name: Install packages
run: npm ci
- name: Cypress run
uses: cypress-io/github-action@v5
with:
build: npm run build
start: npm start
browser: chrome
- name: Build App
run: npm run build && npm run export && touch ./out/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
GITHUB_TOKEN: ${{ secrets.SECRET_TOKEN }}
BRANCH: gh-pages
FOLDER: out