Skip to content

fix: type checking #212

fix: type checking

fix: type checking #212

name: Build, Test, and Deploy
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.17.0
- name: Enable Corepack
run: corepack enable
- name: Install Yarn
run: corepack prepare [email protected] --activate
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build:storybook
env:
CI: true
- name: Test
run: yarn ci
env:
CI: true
- name: Prepare and deploy
if: ${{ github.ref == 'refs/heads/master' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/storybook/@swimlane/ngx-graph
env:
CI: true