Skip to content

fix(): workaround for steps in wizard overview not hidden due to ds bug #101

fix(): workaround for steps in wizard overview not hidden due to ds bug

fix(): workaround for steps in wizard overview not hidden due to ds bug #101

Workflow file for this run

name: Continuous
on: [push]
jobs:
BuildAndTest:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Restore lerna
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Update npm registry
run: npm run update:registry
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build