Skip to content

fix: add style to storybook build #62

fix: add style to storybook build

fix: add style to storybook build #62

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
master:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
steps:
- uses: actions/checkout@v2
name: Checkout [master]
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: '>=18.13.0'
- run: yarn
- run: yarn run build:lib
- run: yarn run ci:test
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/@perfectmemory/ngx-contextmenu/lcov.info
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)
pr:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: '>=18.13.0'
- run: yarn
- run: yarn run build:lib
- run: yarn run ci:test