Skip to content

✨ feat(postMessagePromise): JSBridge通信中,PostMessage进行Promise化方案 #12

✨ feat(postMessagePromise): JSBridge通信中,PostMessage进行Promise化方案

✨ feat(postMessagePromise): JSBridge通信中,PostMessage进行Promise化方案 #12

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
push:
branches: [main]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build-and-deploy:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install and Build
run: |
npm install
npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
token: ${{ secrets.ACCESS_TOKEN }}
clean: true