We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc13ae8 commit 55ebfceCopy full SHA for 55ebfce
.github/workflows/node.js.yml
@@ -20,10 +20,21 @@ jobs:
20
21
steps:
22
- uses: actions/checkout@v2
23
+
24
- name: Use Node.js ${{ matrix.node-version }}
25
uses: actions/setup-node@v1
26
with:
27
node-version: ${{ matrix.node-version }}
28
29
+ # @see https://zenn.dev/odan/scraps/81b2738864a908#comment-71195269e61d4f
30
+ - name: cache node_modules
31
+ id: node_modules_cache_id
32
+ uses: actions/cache@v2
33
+ with:
34
+ path: |
35
+ node_modules
36
+ key: node-v${{ matrix.node-version }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
37
38
- run: yarn install --frozen-lockfile
39
- run: yarn ci
40
- run: yarn build-storybook
0 commit comments