Add information about Editor SDKs for yarn plug'n'play support and ad⦠#61
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/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 |