Skip to content

Release Preview

Release Preview #41

name: Release Preview
on:
workflow_dispatch:
jobs:
release-release:
name: Release Preview
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Public Api Check
run: npm run public-api:check
- name: Preview Release
run: npm run preview
- name: Deploy Storybook Preview
continue-on-error: true
timeout-minutes: 5
env:
NETLIFY_SITE_ID: ${{secrets.NETLIFY_SITE_ID}}
NETLIFY_AUTH_TOKEN: ${{secrets.NETLIFY_AUTH_TOKEN}}
run: npx netlify deploy --filter core-ws