-
-
Notifications
You must be signed in to change notification settings - Fork 39
41 lines (33 loc) · 872 Bytes
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: 'linting'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
runs-on: 'ubuntu-latest'
strategy:
matrix:
node-version: ['lts/*']
fail-fast: false
steps:
- name: 'Checkout Project'
uses: 'actions/checkout@v3'
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: 'actions/[email protected]'
with:
node-version: ${{ matrix.node-version }}
- name: 'Cache Node dependencies'
uses: 'actions/[email protected]'
with:
path: '~/.npm'
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: 'Install Dependencies'
run: 'npm install'
- name: 'Run Tests'
run: 'npm run check'