Skip to content

Merge pull request #4 from salino3/custom-tooltip #3

Merge pull request #4 from salino3/custom-tooltip

Merge pull request #4 from salino3/custom-tooltip #3

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Start JSON server
run: npm run json-server &
- name: Build
run: npm run build
- name: Deploy
run: npm run deploy
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}