Skip to content

Commit 4f071df

Browse files
committed
cache only once
1 parent e73390e commit 4f071df

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/linters.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
name: Run all linters
2-
on: [push]
2+
on: [ push ]
33
concurrency:
44
group: ${{ github.workflow }}-${{ github.ref }}
55
cancel-in-progress: true
66
jobs:
7+
cache:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- name: Install Devbox
12+
uses: jetify-com/[email protected]
13+
with:
14+
enable-cache: 'true'
715
test:
16+
needs: [ cache ]
817
strategy:
918
fail-fast: false
1019
matrix:

0 commit comments

Comments
 (0)