We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73aca6a commit ca86ed0Copy full SHA for ca86ed0
.github/workflows/ci.yml
@@ -17,8 +17,21 @@ jobs:
17
- uses: actions/setup-node@v1
18
with:
19
node-version: 12
20
+ - uses: actions/cache@v2
21
+ with:
22
+ path: node_modules
23
+ key: ${{ runner.OS }}-build-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
24
+ restore-keys: |
25
+ ${{ runner.OS }}-build-${{ hashFiles('package.json') }}-
26
+ ${{ runner.OS }}-build-
27
- run: npm install
28
- run: npm run build
29
+ - run: npm run lint:report
30
+ continue-on-error: true
31
+ - uses: ataylorme/eslint-annotate-action@1.1.2
32
33
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
34
+ report-json: 'eslint_report.json'
35
- run: npm run pack
36
if: github.event_name != 'pull_request'
37
- name: Create Pull Request
0 commit comments