mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
47e6ce9083
* build test test test Update action.yml Update action.yml test test Update action.yml Update action.yml Update action.yml test test Update ci.yml Update ci.yml test test test test Update action.yml test Update ci.yml Update e2e-ci.yml test * Update ci.yml * Update plugin-generator-e2e.yaml * test * test * test * test * Update e2e-ci.yml * Update e2e-ui.yml * test * Update ci.yml * Update ci.yml * Update action.yml * Update action.yml * Update package.json * Update static-data.yml * Update static-data.yml * Update website.yml * test * Update ui-components.yml * Update ui-components.yml * Update ui-components.yml
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
name: UI Components
|
|
|
|
on:
|
|
# pull_request:
|
|
workflow_dispatch:
|
|
# schedule:
|
|
# - cron: '0 0 * * *'
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
env:
|
|
DEBUG: verdaccio*
|
|
|
|
jobs:
|
|
deploy:
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
deployments: write
|
|
pull-requests: write # to comment on pull-requests
|
|
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'verdaccio/verdaccio'
|
|
env:
|
|
NODE_OPTIONS: --max_old_space_size=4096
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Install dependencies with a custom registry
|
|
uses: ./.github/actions/install-app
|
|
|
|
- name: Install pnpm
|
|
run: |
|
|
corepack enable
|
|
corepack prepare
|
|
- name: Install
|
|
run: pnpm install
|
|
- name: Build storybook
|
|
run: pnpm ui:storybook:build
|
|
- name: Copy public content
|
|
# the msw.js worker is need it at the storybook-static folder in production
|
|
run: cp -R packages/ui-components/public/* packages/ui-components/storybook-static
|
|
- name: Deploy to Netlify
|
|
env:
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_UI_SITE_ID }}
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
run: pnpm --filter ...@verdaccio/ui-components netlify:ui:deploy
|