Update stable diffusion article to explain formula transitions in mor… #39
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
# 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: Build to GH Pages | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Select node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '12' | |
- name: Install 🔧 | |
env: | |
GOOGLE_ANALITICS_ID: ${{ secrets.GOOGLE_ANALITICS_ID }} | |
run: | | |
npm install --frozen-lockfile | |
- name: Type check ❴❵ | |
run: | | |
npm run flow-typed | |
- name: Test 🧪 | |
run: | | |
npm run test --runInBand --no-cache | |
- name: Coverage 🥧 | |
run: | | |
npm run test:coverage | |
- name: Build 🔨 | |
env: | |
GOOGLE_ANALITICS_ID: ${{ secrets.GOOGLE_ANALITICS_ID }} | |
run: | | |
npm run build | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: public # The folder the action should deploy. |