From e3e96dee421302432420b7676a9b29626e0af873 Mon Sep 17 00:00:00 2001 From: mperdomo-bc <97296851+mperdomo-bc@users.noreply.github.com> Date: Thu, 7 Mar 2024 14:29:09 -0300 Subject: [PATCH] chore(action): fix deploy storybook (#6333) --- .github/workflows/deploy-storybook.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy-storybook.yml b/.github/workflows/deploy-storybook.yml index aa0b744cfe8..2b0de4e42c5 100644 --- a/.github/workflows/deploy-storybook.yml +++ b/.github/workflows/deploy-storybook.yml @@ -5,30 +5,30 @@ on: branches: - development +env: + HUSKY: 0 + jobs: pull-request: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [14.16] steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - name: Install node.js v${{ matrix.node-version }} - uses: actions/setup-node@v2 + - name: Install node.js + uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version-file: './.nvmrc' cache: 'yarn' - name: Install dependencies - run: yarn + run: yarn --frozen-lockfile -# Non-working command -# - name: Deploy storybook - base components -# run: yarn storybook:base + # Non-working command + # - name: Deploy storybook - base components + # run: yarn storybook:base - name: Deploy storybook - wallet run: yarn storybook:deploy-wallet --ci env: - GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}