Commit 4cae336 1 parent 94c2a3e commit 4cae336 Copy full SHA for 4cae336
File tree 1 file changed +20
-14
lines changed
1 file changed +20
-14
lines changed Original file line number Diff line number Diff line change @@ -13,24 +13,30 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- uses : actions/checkout@v1
16
- - name : cache node modules
17
- uses : actions/cache@v1
18
- with :
19
- path : ~/.cache/yarn
20
- key : ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
21
- restore-keys : |
22
- ${{ runner.os }}-yarn-
16
+
17
+ # FIXME: Reenable after 2020-04-01 when Github cache doesn't take forever.
18
+ # - name: cache node modules
19
+ # uses: actions/cache@v1
20
+ # with:
21
+ # path: ~/.cache/yarn
22
+ # key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
23
+ # restore-keys: |
24
+ # ${{ runner.os }}-yarn-
25
+
23
26
- name : Set up Go 1.13
24
27
uses : actions/setup-go@v1
25
28
with :
26
29
go-version : 1.13
27
- - name : cache Go modules
28
- uses : actions/cache@v1
29
- with :
30
- path : ~/go/pkg/mod
31
- key : ${{ runner.os }}-go-${{ hashFiles('packages/cosmic-swingset/go.sum') }}
32
- restore-keys : |
33
- ${{ runner.os }}-go-
30
+
31
+ # FIXME: Reenable after 2020-04-01 when Github cache doesn't take forever.
32
+ # - name: cache Go modules
33
+ # uses: actions/cache@v1
34
+ # with:
35
+ # path: ~/go/pkg/mod
36
+ # key: ${{ runner.os }}-go-${{ hashFiles('packages/cosmic-swingset/go.sum') }}
37
+ # restore-keys: |
38
+ # ${{ runner.os }}-go-
39
+
34
40
# 'yarn install' must be done at the top level, to build all the
35
41
# cross-package symlinks
36
42
- name : yarn install
You can’t perform that action at this time.
0 commit comments