Skip to content

refactor: remove reactivityTransform #26

refactor: remove reactivityTransform

refactor: remove reactivityTransform #26

Workflow file for this run

name: Build and Deploy gh-pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@master
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: '14'
cache: 'npm'
- name: Install Dependencies 🔧
run: |
npm install
- name: Build Site 🔧
run: |
npm run build:example
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist-examples
clean: false