File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1818
1919 steps :
2020 - uses : actions/checkout@v2
21- - uses : ./.github/actions/bootstrap
21+ - name : Use Node.js ${{ matrix.node-version }}
22+ uses : actions/setup-node@v1
2223 with :
2324 node-version : ${{ matrix.node-version }}
25+ - name : Configure yarn cache path
26+ run : yarn config set cache-folder ~/.yarn-cache
27+ - name : Restore yarn cache
28+ uses : actions/cache@v2
29+ with :
30+ path : ~/.yarn-cache
31+ key : yarn-cache-${{ matrix.node-version }}
32+ restore-keys : |
33+ yarn-cache-
34+ - name : Restore node_modules
35+ uses : actions/cache@v2
36+ with :
37+ path : node_modules
38+ key : node-modules-${{ matrix.node-version }}-${{ hashFiles('yarn.lock') }}
39+ restore-keys : |
40+ node-modules-${{ matrix.node-version }}-
41+ node-modules-
42+ - name : Install dependencies
43+ run : yarn
2444 - name : Run linter, concat, minifier and tests
2545 run : yarn dist
You can’t perform that action at this time.
0 commit comments