This repository was archived by the owner on Feb 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +40
-3
lines changed Expand file tree Collapse file tree 2 files changed +40
-3
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
+
4
+ name : Node.js CI
5
+
6
+ on :
7
+ push :
8
+ branches : [main]
9
+ pull_request :
10
+ branches : [main]
11
+
12
+ jobs :
13
+ build :
14
+ runs-on : ubuntu-latest
15
+
16
+ strategy :
17
+ matrix :
18
+ node-version : [12.x, 14.x]
19
+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
20
+
21
+ steps :
22
+ - uses : actions/checkout@v2
23
+ - name : Use Node.js ${{ matrix.node-version }}
24
+ uses : actions/setup-node@v2
25
+ with :
26
+ node-version : ${{ matrix.node-version }}
27
+ - run : yarn install --frozen-lockfile
28
+ - run : yarn test
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @canva/dependency-tree" ,
3
- "version" : " 2.4.2 " ,
3
+ "version" : " 2.4.3 " ,
4
4
"description" : " Calculates a dependency tree for set of files" ,
5
5
"main" : " dist/index.js" ,
6
6
"author" : " Canva Pty Ltd" ,
7
7
"license" : " MIT" ,
8
+ "repository" : {
9
+ "type" : " git" ,
10
+ "url" :
" git+ssh://[email protected] /Canva/depdendency-tree-public.git"
11
+ },
12
+ "keywords" : [
13
+ " dependency" ,
14
+ " deps" ,
15
+ " tree" ,
16
+ " graph"
17
+ ],
8
18
"scripts" : {
9
19
"prettier" : " prettier --write ." ,
10
20
"prepare" : " rimraf dist/ && tsc" ,
54
64
},
55
65
"typings" : " dist/index.d.ts" ,
56
66
"engines" : {
57
- "node" : " >=12.13.1 < 13" ,
58
- "yarn" : " >=1.13.0"
67
+ "node" : " 12.x || 14.x"
59
68
}
60
69
}
You can’t perform that action at this time.
0 commit comments