File tree 2 files changed +5
-20
lines changed
2 files changed +5
-20
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ concurrency:
12
12
# Skip intermediate builds: always.
13
13
# Cancel intermediate builds: only if it is a pull request build.
14
14
group : ${{ github.workflow }}-${{ github.ref }}
15
- cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
15
+ cancel-in-progress : true
16
16
17
17
jobs :
18
18
test :
@@ -32,18 +32,10 @@ jobs:
32
32
- name : Cache Julia artifacts & such
33
33
uses : julia-actions/cache@v2
34
34
with :
35
- # Contains the node . env for PlutoPDF.
36
- # Since it needs to be in sync with the puppeteer cache, we cache it separately .
35
+ # Contains the node env for PlutoPDF.
36
+ # Disable so it installs Chromium every time .
37
37
cache-scratchspaces : false
38
38
39
- - name : Set up PlutoPDF caches
40
- uses : actions/cache@v4
41
- with :
42
- path : |
43
- ~/.julia/scratchspaces
44
- ~/.cache/puppeteer
45
- key : ${{ runner.os }}-plutopdf_cache-${{ hashFiles('**/Project.toml', '**/Manifest.toml', '.github/workflows/*' ) }}
46
-
47
39
# We set up a folder that Pluto can use to cache exported
48
40
# notebooks. If the notebook file did not change, then Pluto can
49
41
# take the exported file from cache instead of running the
Original file line number Diff line number Diff line change 32
32
- name : Cache Julia artifacts & such
33
33
uses : julia-actions/cache@v2
34
34
with :
35
- # Contains the node . env for PlutoPDF.
36
- # Since it needs to be in sync with the puppeteer cache, we cache it separately .
35
+ # Contains the node env for PlutoPDF.
36
+ # Disable so it installs Chromium every time .
37
37
cache-scratchspaces : false
38
- - name : Set up PlutoPDF caches
39
- uses : actions/cache@v4
40
- with :
41
- path : |
42
- ~/.julia/scratchspaces
43
- ~/.cache/puppeteer
44
- key : ${{ runner.os }}-plutopdf_cache-${{ hashFiles('**/Project.toml', '**/Manifest.toml', '.github/workflows/*' ) }}
45
38
46
39
# We set up a folder that Pluto can use to cache exported
47
40
# notebooks. If the notebook file did not change, then Pluto can
You can’t perform that action at this time.
0 commit comments