game-of-life/.github/workflows/main.yml

36 lines
1 KiB
YAML
Raw Normal View History

2020-05-26 00:56:53 +00:00
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: Install Deps
run: npm install
- name: Test
run: npm run test
2020-05-26 04:38:48 +00:00
- name: GH Pages deploy
uses: Cecilapp/GitHub-Pages-deploy@2.0.1
2020-05-26 04:39:33 +00:00
# run: npm run deploy
2020-05-26 01:26:30 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_EPG_BOT_TOKEN }}