File tree 1 file changed +23
-29
lines changed 1 file changed +23
-29
lines changed Original file line number Diff line number Diff line change 1
- name : CI
1
+ name : Keys Manager
2
+
2
3
on : [push, pull_request]
4
+
3
5
jobs :
4
6
build :
5
7
runs-on : ubuntu-latest
6
8
steps :
7
- - uses : actions/checkout@v2
8
- - uses : actions/setup-node@v2
9
+ - uses : actions/checkout@v3
10
+ - uses : actions/setup-node@v3
9
11
with :
10
- node-version : ' 14'
11
- - name : use cache
12
- uses : actions/cache@v2
13
- with :
14
- path : |
15
- node_modules
16
- */*/node_modules
17
- /home/runner/.cache/Cypress
18
- key : ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
19
-
20
- - run : npm i
21
- - run : npm run build
12
+ node-version : ' 18'
13
+ cache : npm
14
+
15
+ - name : Install dependencies
16
+ run : npm i
17
+
18
+ - name : Run build
19
+ run : npm run build
22
20
test :
23
21
runs-on : ubuntu-latest
24
22
steps :
25
- - uses : actions/checkout@v2
26
- - uses : actions/setup-node@v2
27
- with :
28
- node-version : ' 14'
29
- - name : use cache
30
- uses : actions/cache@v2
23
+ - uses : actions/checkout@v3
24
+ - uses : actions/setup-node@v3
31
25
with :
32
- path : |
33
- node_modules
34
- */*/node_modules
35
- /home/runner/.cache/Cypress
36
- key : ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
37
-
38
- - run : npm i
39
- - run : npm run test
26
+ node-version : ' 18 '
27
+ cache : npm
28
+
29
+ - name : Install dependencies
30
+ run : npm i
31
+
32
+ - name : Run tests
33
+ run : npm run test
You can’t perform that action at this time.
0 commit comments