Release 3.0.10 (and few other versions) to fix support for future Mic… #181
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: Client (JS) | |
on: | |
push: | |
paths: | |
- '.github/workflows/web-assets.yml' | |
- 'WebAssets/**' | |
- '*.Demo*/**/*.ts' | |
- '*.Demo*/**/*.css' | |
- '*.Demo*/**/*.html' | |
- '*.Demo*/**/package.json' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-and-publish: | |
name: Build and Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: 'true' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.14.0' | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: 'WebAssets: npm ci' | |
run: npm ci | |
working-directory: WebAssets | |
- name: 'WebAssets: npm run build' | |
run: npm run build | |
working-directory: WebAssets | |
- name: 'WebAssets: npm test' | |
run: npm test -- --runInBand | |
working-directory: WebAssets | |
- name: 'WebAssets: npm run build-storybook' | |
run: npm run build-storybook | |
working-directory: WebAssets | |
- name: 'WebAssets: npm run test-storybook' | |
run: npm run test-storybook | |
working-directory: WebAssets | |
- name: "[Failure] Run actions/upload-artifact@v4 (diff output)" | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: __diff_output__ | |
path: WebAssets/src/**/__image_snapshots__/__diff_output__ | |
if-no-files-found: ignore | |
- name: '[Failure] WebAssets: npm run test-storybook-with-update' | |
run: npm run test-storybook-with-update | |
working-directory: WebAssets | |
if: failure() | |
- name: "[Failure] Run actions/upload-artifact@v4 (updated snapshots)" | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: '__image_snapshots__ (updated)' | |
path: WebAssets/src/**/__image_snapshots__ | |
if-no-files-found: ignore | |
- name: 'AspNetCore.Demo: npm ci' | |
run: npm ci | |
working-directory: AspNetCore.Demo | |
- name: 'AspNetCore.Demo: npm run build' | |
run: npm run build | |
working-directory: AspNetCore.Demo | |
- name: 'AspNetCore.Demo.Net6: npm ci' | |
run: npm ci | |
working-directory: AspNetCore.Demo.Net6 | |
- name: 'AspNetCore.Demo.Net6: npm run build' | |
run: npm run build | |
working-directory: AspNetCore.Demo.Net6 | |
- name: 'Owin.Demo: npm ci' | |
run: npm ci | |
working-directory: Owin.Demo | |
- name: 'Owin.Demo: npm run build' | |
run: npm run build | |
working-directory: Owin.Demo | |
- if: github.ref == 'refs/heads/main' | |
uses: JS-DevTools/npm-publish@v1 | |
with: | |
package: './WebAssets/dist/package.json' | |
token: ${{ secrets.NPM_TOKEN }} |