Skip to content

Add information about Editor SDKs for yarn plug'n'play support and ad… #61

Add information about Editor SDKs for yarn plug'n'play support and ad…

Add information about Editor SDKs for yarn plug'n'play support and ad… #61

Workflow file for this run

name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v2.3.1
- name: Setup βš™οΈ
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install & Test βœ…
run: |
yarn install
yarn run test:ci
- name: Quality Assurance πŸ‘Œ
run: |
npx dpdm --warning false --tree false --exit-code circular:1 src/**
- name: Build πŸ”§
run:
yarn run build --base=/${{ github.event.repository.name }}/
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages
folder: build