Merge pull request #6507 from blockchain/release/v4.101.11 #1534
This file contains hidden or 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: deploy-storybook | |
| on: | |
| push: | |
| branches: | |
| - development | |
| env: | |
| HUSKY: 0 | |
| jobs: | |
| pull-request: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 16 | |
| - name: Get node version | |
| id: node | |
| run: | | |
| echo "::set-output name=version::$(node -v)" | |
| - name: Get node_modules cache | |
| uses: actions/cache@v4 | |
| id: node_modules | |
| with: | |
| path: | | |
| **/node_modules | |
| key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}-${{ steps.node.outputs.version }} | |
| - name: Install dependencies | |
| run: yarn --frozen-lockfile | |
| - name: Deploy storybook - wallet | |
| run: yarn storybook:deploy-wallet --ci | |
| env: | |
| GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} |