Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 0 additions & 36 deletions .circleci/config.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .circleci/deploy_stage.sh

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# This workflow will do a clean install of node dependencies, 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
name: CI - Build

on:
push:
branches: [ develop ]
on:
pull_request:
branches: [ master, develop ]

jobs:
build:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This workflow will do a clean install of node dependencies, 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: Deploy - Production

on:
push: master

jobs:
deploy-production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: node --version
- name: Install dependencies
run: npm ci
- name: Run build script
run: npm run build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./build
allow_empty_commit: true