This repository was archived by the owner on Sep 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +15
-12
lines changed Expand file tree Collapse file tree 2 files changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -3,25 +3,28 @@ name: Node CI
33on :
44 push :
55 branches :
6- - master
6+ - master
77 pull_request :
88 branches :
9- - " ** "
9+ - ' ** '
1010
1111jobs :
12- build :
12+ tests :
1313 runs-on : ubuntu-20.04
14+ strategy :
15+ matrix :
16+ node : [16]
1417 steps :
15- - name : Checkout
16- uses : actions/checkout@v2
18+ - name : Checkout
19+ uses : actions/checkout@v2
1720
18- - name : Setup Nodejs
19- uses : actions/setup-node@v2
20- with :
21- node-version : 14
21+ - name : Setup Nodejs
22+ uses : actions/setup-node@v2
23+ with :
24+ node-version : ${{ matrix.node }}
2225
23- - name : Install dependencies
24- run : npm install
26+ - name : Install dependencies
27+ run : npm install
2528 # The owning team will fix the issues and uncomment the steps after necessary linting and configuring changes
2629 - name : Lint
2730 run : npm run lint
Original file line number Diff line number Diff line change 1515 - name : Setup Node.js
1616 uses : actions/setup-node@v1
1717 with :
18- node-version : 12
18+ node-version : 16
1919 - name : Install dependencies
2020 run : npm ci
2121 # TODO: Uncomment the steps once the repo have appropriate unit tests and lint config in place
You can’t perform that action at this time.
0 commit comments