Skip to content

Added MS Clarity

Added MS Clarity #6

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- reactjs-sample
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x' # Using Node 14.x
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: build
clean: true
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}