forked from grooteogi/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (47 loc) · 1.51 KB
/
Copy pathpr_test.yml
File metadata and controls
56 lines (47 loc) · 1.51 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: PR Test
on:
pull_request:
branches:
- develop
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo '::set-output name=dir::$(yarn config get cacheFolder)'
- name: Cache Yarn cache files
uses: actions/cache@v3
id: yarn-cache
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
${{ github.workspace }}/node_modules
key: ${{ runner.os }}-Node-v${{ matrix.node-version }}-Yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-Node-v${{ matrix.node-version }}-Yarn-
- name: Cache Eslint cache files
uses: actions/cache@v3
id: eslint-cache
with:
path: |
${{ github.workspace }}/.eslintcache
key: ${{ runner.os }}-Node-v${{ matrix.node-version }}-Eslint-${{ hashFiles('**/.eslintcache') }}
restore-keys: |
${{ runner.os }}-Node-v${{ matrix.node-version }}-Eslint-
- name: Install dependencies
if: |
steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install
- name: Lint
run: yarn lint
- name: Format
run: yarn format