We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8cee6f commit a8e6516Copy full SHA for a8e6516
1 file changed
.github/workflows/ci.yml
@@ -83,9 +83,17 @@ jobs:
83
path: |
84
~/.cache/Cypress
85
./atcoder-problems-frontend/node_modules
86
- .eslintcache
87
key: ${{ runner.os }}-cargo-${{ hashFiles('atcoder-problems-frontend/yarn.lock') }}
88
+ - name: Cache eslint
89
+ uses: actions/cache@v3.2.3
90
+ with:
91
+ path: |
92
+ ./atcoder-problems-frontend/.eslintcache-ci
93
+ ./atcoder-problems-frontend/.eslintcache
94
+ key: eslint-${{github.ref_name}}-${{github.sha}}
95
+ restore-keys: eslint-${{github.ref_name}}-
96
+
97
- name: Install dependencies
98
run: yarn
99
@@ -99,7 +107,7 @@ jobs:
107
- name: test
100
108
run: yarn test
101
109
- name: lint
102
- run: yarn lint --cache-strategy content
110
+ run: yarn lint --cache-strategy content --cache-location .eslintcache-ci
103
111
- name: Integration test
104
112
run: |
105
113
yarn prepare-ci
0 commit comments