Skip to content

fix: instanceof Observable always fail #312

fix: instanceof Observable always fail

fix: instanceof Observable always fail #312

Workflow file for this run

name: Deploy stories
on:
push:
branches: [master]
jobs:
deploy_stories:
name: Deploy Stories
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build stories
run: yarn storybook:build
- name: Deploy stories
if: success()
uses: crazy-max/ghaction-github-pages@v1
with:
build_dir: dist
fqdn: aui.js.org
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}