File tree Expand file tree Collapse file tree 5 files changed +1659
-2577
lines changed
Expand file tree Collapse file tree 5 files changed +1659
-2577
lines changed Original file line number Diff line number Diff line change 99env :
1010 CI : true
1111 FORCE_COLOR : 2
12- NODE_COV : 16 # The Node.js version to run coveralls on
12+ NODE_COV : " lts/*" # The Node.js version to run coveralls on
13+
14+ permissions :
15+ contents : read
1316
1417jobs :
1518 lint :
@@ -18,23 +21,27 @@ jobs:
1821 - uses : actions/checkout@v3
1922 - uses : actions/setup-node@v3
2023 with :
21- node-version : 16
24+ node-version : lts/*
2225 cache : npm
2326 - run : npm ci
2427 - run : npm run lint
2528
2629 test :
30+ permissions :
31+ checks : write # for coverallsapp/github-action to create new checks
32+ contents : read # for actions/checkout to fetch code
2733 name : Node ${{ matrix.node }}
2834 runs-on : ubuntu-latest
2935
3036 strategy :
3137 fail-fast : false
3238 matrix :
3339 node :
34- - 10
3540 - 12
3641 - 14
3742 - 16
43+ - 18
44+ - " lts/*"
3845
3946 steps :
4047 - uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments