Skip to content

Update Data.ts - bio #138

Update Data.ts - bio

Update Data.ts - bio #138

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
target_branch: gh-pages
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Init Name Config (Parvathirajan Natarajan)
run: git config --global user.name "Parvathirajan Natarajan"
- name: Init Email Config ([email protected])
run: git config --global user.email "[email protected]"
- name: Install Dependencies
run: yarn
- name: Code Build
run: CI=false yarn build
- name: Deploy
uses: crazy-max/[email protected]
with:
target_branch: gh-pages
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}