2019-09-26 16:25:26 +03:00
|
|
|
name: Lint
|
2020-06-10 18:51:28 +03:00
|
|
|
on: [push, pull_request]
|
2019-09-26 16:25:26 +03:00
|
|
|
env:
|
|
|
|
CI: true
|
2020-04-29 09:59:00 +03:00
|
|
|
NODE: 12.x
|
2019-09-26 16:25:26 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set Node.js version
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: "${{ env.NODE }}"
|
|
|
|
|
|
|
|
- name: Set up npm cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
2020-06-10 08:29:22 +03:00
|
|
|
key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
|
2019-09-26 16:25:26 +03:00
|
|
|
restore-keys: |
|
2020-06-10 08:29:22 +03:00
|
|
|
${{ runner.OS }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
|
2019-09-26 16:25:26 +03:00
|
|
|
${{ runner.OS }}-node-v${{ env.NODE }}-
|
|
|
|
|
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
2020-06-11 23:20:10 +03:00
|
|
|
- name: Lint
|
2019-09-26 16:25:26 +03:00
|
|
|
run: npm run lint
|