Skip to content

readme updated to hook example #68

readme updated to hook example

readme updated to hook example #68

Workflow file for this run

name: CI/CD
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: install gh pages separately
run: npm install gh-pages [email protected] [email protected]
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
- name: Cypress run
uses: cypress-io/github-action@v6
with:
build: npm run build
start: npm start
- name: Build
run: npm run react-build
- name: Deploy
run: |
git config --global user.name $user_name
git config --global user.email $user_email
git remote set-url origin https://${github_token}@github.com/${repository}
npm run deploy
env:
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
github_token: ${{ secrets.ACTIONS_DEPLOY_ACCESS_TOKEN }}
repository: ${{ github.repository }}