mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
6ffb0091bd
Bumps [actions/cache](https://github.com/actions/cache) from 3.2.6 to 3.3.1.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](69d9d449ac...88522ab9f3
)
---
updated-dependencies:
- dependency-name: actions/cache
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
78 lines
2.8 KiB
YAML
78 lines
2.8 KiB
YAML
name: UI Components
|
||
|
||
on:
|
||
workflow_dispatch:
|
||
pull_request:
|
||
paths:
|
||
- .github/workflows/ui-components.yml
|
||
- 'packages/ui-components/**'
|
||
- 'package.json'
|
||
- 'pnpm-workspace.yaml'
|
||
- 'pnpm-lock.yaml'
|
||
|
||
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
|
||
env:
|
||
NODE_OPTIONS: --max_old_space_size=4096
|
||
steps:
|
||
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # tag=v3
|
||
|
||
- name: Use Node
|
||
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # tag=v3
|
||
with:
|
||
node-version-file: '.nvmrc'
|
||
|
||
- name: Cache pnpm modules
|
||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
||
env:
|
||
cache-name: cache-pnpm-modules
|
||
with:
|
||
path: ~/.pnpm-store
|
||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||
restore-keys: |
|
||
${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-
|
||
|
||
- name: Install pnpm
|
||
run: |
|
||
corepack enable
|
||
corepack prepare --activate pnpm@6.32.15
|
||
- name: Install
|
||
run: pnpm recursive install --frozen-lockfile
|
||
- 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 Production UI Netlify
|
||
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'workflow_dispatch'
|
||
uses: verdaccio/action-netlify-deploy@v2.0.0
|
||
with:
|
||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||
netlify-auth-token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||
netlify-site-id: ${{ secrets.NETLIFY_UI_SITE_ID }}
|
||
build-dir: './packages/ui-components/storybook-static'
|
||
- name: 🤖 Deploy Preview UI Components Netlify
|
||
if: github.repository == 'verdaccio/verdaccio'
|
||
uses: verdaccio/action-netlify-deploy@v2.0.0
|
||
id: netlify_preview_ui
|
||
with:
|
||
draft: true
|
||
comment-on-pull-request: true
|
||
github-deployment-is-production: false
|
||
github-deployment-is-transient: true
|
||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||
netlify-auth-token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||
netlify-site-id: ${{ secrets.NETLIFY_UI_SITE_ID }}
|
||
build-dir: './packages/ui-components/storybook-static'
|