Skip to content

Add method to Injector to act as both node and jquery style event emi… #53

Add method to Injector to act as both node and jquery style event emi…

Add method to Injector to act as both node and jquery style event emi… #53

Workflow file for this run

name: Deploy Pages
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install
run: yarn --frozen-lockfile
- name: Build
run: lerna run build
- name: Generate API Docs
run: lerna run docs
- name: Build Jekyll
uses: actions/[email protected]
with:
source: ./docs
destination: ./docs/_site
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './docs/_site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1