From be3bba047d0e9bf90602a27ec30ce9e8584e5433 Mon Sep 17 00:00:00 2001 From: Tyom Semonov Date: Mon, 20 Jul 2020 14:02:45 +0100 Subject: [PATCH] Use node 12 for GH actions Node 13 has issues with Storybook https://github.com/storybookjs/storybook/issues/10477 --- .github/workflows/deploy.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index ee9cafb..dddd7d6 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -10,6 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - uses: actions/setup-node@v1 + with: + node-version: '12' - name: Get yarn cache id: yarn-cache