Add changelog #174
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
name: Continuous Deployment | |
runs-on: ubuntu-latest | |
steps: | |
# - name: 'Updating Upun' | |
# run: sudo apt-get update && sudo apt-get install -y libgbm-dev | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v2 | |
- name: 'Setup Node' | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: 'Setup Chrome' | |
uses: browser-actions/setup-chrome@latest | |
- name: 'Install and Build' | |
run: | | |
yarn | |
cd examples/create-react-app-typescript-example | |
yarn | |
cd - | |
yarn types | |
yarn lint | |
yarn build | |
- name: 'Run Tests' | |
run: CHROMIUM_BIN=$(which chrome) yarn test | |
- name: 'Generate Documentation Website' | |
run: yarn docs:generate | |
- name: Deploy Documentation Website 🚀 | |
if: github.ref == 'refs/heads/master' | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: documentation-website # The folder the action should deploy. |