Release Preview #157
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Preview | |
on: | |
workflow_dispatch: | |
jobs: | |
release-preview: | |
name: Release Preview | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
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 Docs Preview | |
continue-on-error: true | |
timeout-minutes: 5 | |
env: | |
NETLIFY_AUTH_TOKEN: ${{secrets.NETLIFY_AUTH_TOKEN}} | |
run: npx netlify-cli deploy --site storybook-clarity-design |