Skip to content

delete CreateUP guide & update Install Extension #2381

delete CreateUP guide & update Install Extension

delete CreateUP guide & update Install Extension #2381

Workflow file for this run

name: ci
on:
pull_request:
push:
branches: [main]
jobs:
checks:
if: github.event_name != 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout ๐Ÿ›Ž๏ธ
uses: actions/checkout@v3
- name: Install โš™๏ธ
run: yarn install --frozen-lockfile
- name: Prettier ๐ŸŽจ
run: yarn run prettier
- name: Build ๐Ÿ› 
run: yarn build
build-and-deploy:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout ๐Ÿ›Ž๏ธ
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install โš™๏ธ
run: yarn install --frozen-lockfile
- name: Build ๐Ÿ› 
run: yarn build
- name: Deploy ๐Ÿš€
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.