chore: Bump storybook to 7.2.1 #240
Workflow file for this run
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: ci | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Cache packages when the branch is not update-dependencies or dependabot/* | |
- name: Resolve caching | |
id: cache | |
if: ${{ github.ref_name != 'update-dependencies' && !startsWith(github.ref_name, 'dependabot/') }} | |
run: echo "PACKAGE=npm" >> $GITHUB_OUTPUT | |
- name: Use Node.js | |
uses: actions/setup-node@v3.7.0 | |
with: | |
node-version-file: ".nvmrc" | |
cache: ${{ steps.cache.outputs.PACKAGE }} | |
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452 | |
- name: Install dependencies | |
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu | |
- name: Build | |
run: npm run build | |
- name: Upload webpack stats file | |
uses: relative-ci/agent-upload-artifact-action@v1.0.3 | |
with: | |
webpackStatsFile: ./packages/html-templates/artifacts/webpack-stats.json | |
- name: Upload build files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-artifacts | |
retention-days: 1 | |
# add glob on the first directory to force paths relative to current directory | |
path: | | |
packages*/*/lib/** | |
packages*/*/lib-esm/** | |
packages*/*/dist/** | |
packages*/*/types/** | |
lint: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Cache packages when the branch is not update-dependencies or dependabot/* | |
- name: Resolve caching | |
id: cache | |
if: ${{ github.ref_name != 'update-dependencies' && !startsWith(github.ref_name, 'dependabot/') }} | |
run: echo "PACKAGE=npm" >> $GITHUB_OUTPUT | |
- name: Use Node.js | |
uses: actions/setup-node@v3.7.0 | |
with: | |
node-version-file: ".nvmrc" | |
cache: ${{ steps.cache.outputs.PACKAGE }} | |
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452 | |
- name: Install dependencies | |
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu | |
- name: Download build files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-artifacts | |
- name: Lint | |
run: npm run lint | |
test-unit: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Cache packages when the branch is not update-dependencies or dependabot/* | |
- name: Resolve caching | |
id: cache | |
if: ${{ github.ref_name != 'update-dependencies' && !startsWith(github.ref_name, 'dependabot/') }} | |
run: echo "PACKAGE=npm" >> $GITHUB_OUTPUT | |
- name: Use Node.js | |
uses: actions/setup-node@v3.7.0 | |
with: | |
node-version-file: ".nvmrc" | |
cache: ${{ steps.cache.outputs.PACKAGE }} | |
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452 | |
- name: Install dependencies | |
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu | |
- name: Download build files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-artifacts | |
- name: Test | |
run: npm test | |
test-e2e: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Cache packages when the branch is not update-dependencies or dependabot/* | |
- name: Resolve caching | |
id: cache | |
if: ${{ github.ref_name != 'update-dependencies' && !startsWith(github.ref_name, 'dependabot/') }} | |
run: echo "PACKAGE=npm" >> $GITHUB_OUTPUT | |
- name: Use Node.js | |
uses: actions/setup-node@v3.7.0 | |
with: | |
node-version-file: ".nvmrc" | |
cache: ${{ steps.cache.outputs.PACKAGE }} | |
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452 | |
- name: Install dependencies | |
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu | |
- name: Download build files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-artifacts | |
- name: Install E2E tests dependencies | |
working-directory: packages/cli | |
run: npx playwright install --with-deps | |
- name: Run E2E tests | |
working-directory: packages/cli | |
run: npm run test:e2e | |
- name: E2E tests - upload screenshots | |
if: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
continue-on-error: true | |
working-directory: packages/cli | |
run: node node_modules/.bin/argos upload ./screenshots | |
test-package-cli: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [20, 18, 16, 14] | |
name: CLI nodejs ${{ matrix.version }} | |
steps: | |
- uses: actions/checkout@v3 | |
# Cache packages when the branch is not update-dependencies or dependabot/* | |
- name: Resolve caching | |
id: cache | |
if: ${{ github.ref_name != 'update-dependencies' && !startsWith(github.ref_name, 'dependabot/') }} | |
run: echo "PACKAGE=npm" >> $GITHUB_OUTPUT | |
- name: Use Node.js | |
uses: actions/setup-node@v3.7.0 | |
with: | |
node-version: ${{ matrix.version }} | |
cache: ${{ steps.cache.outputs.PACKAGE }} | |
- name: Download build files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-artifacts | |
- name: Install dependencies | |
run: npm install -g lerna@6.6.2 verdaccio@5.26.1 | |
- name: Run local npm registry | |
run: ./scripts/local-registry.sh & | |
- name: Publish bundle-stats packages locally | |
run: sleep 20 && ./scripts/local-registry-publish.sh | |
- name: Test package | |
run: npm run test:package | |
working-directory: packages/cli | |
test-package-webpack-plugin: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [20, 18, 16, 14] | |
webpack: ['webpack4', 'webpack5'] | |
exclude: | |
- webpack: 'webpack4' | |
version: 18 | |
- webpack: 'webpack4' | |
version: 20 | |
name: ${{ matrix.webpack }} plugin nodejs ${{ matrix.version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3.7.0 | |
with: | |
node-version: ${{ matrix.version }} | |
- name: Download build files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-artifacts | |
- name: Install dependencies | |
run: npm install -g lerna@6.6.2 verdaccio@5.26.1 | |
- name: Run local npm registry | |
run: ./scripts/local-registry.sh & | |
- name: Publish bundle-stats packages locally | |
run: sleep 20 && ./scripts/local-registry-publish.sh | |
- name: Test package | |
run: npm run test:package -- -t ${{ matrix.webpack }} | |
working-directory: packages/webpack-plugin | |
tests: | |
needs: | |
- lint | |
- test-unit | |
- test-e2e | |
- test-package-cli | |
- test-package-webpack-plugin | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Tests done." | |
publish: | |
# Run only for version tags | |
if: contains(github.ref, 'refs/tags/v') | |
needs: | |
- tests | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
# Cache packages when the branch is not update-dependencies or dependabot/* | |
- name: Resolve caching | |
id: cache | |
if: ${{ github.ref_name != 'update-dependencies' && !startsWith(github.ref_name, 'dependabot/') }} | |
run: echo "PACKAGE=npm" >> $GITHUB_OUTPUT | |
- name: Use Node.js | |
uses: actions/setup-node@v3.7.0 | |
with: | |
node-version-file: ".nvmrc" | |
cache: ${{ steps.cache.outputs.PACKAGE }} | |
registry-url: 'https://registry.npmjs.org' | |
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452 | |
- name: Install dependencies | |
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu | |
- name: Download build | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-artifacts | |
- run: npm run release | |
env: | |
NPM_CONFIG_PROVENANCE: true | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |