Skip to content

commented file yml

commented file yml #7

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 }}