File tree Expand file tree Collapse file tree 2 files changed +22
-22
lines changed Expand file tree Collapse file tree 2 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ jobs:
2222 runs-on : ubuntu-latest
2323 steps :
2424 - name : Checkout
25- uses : actions/checkout@v3
25+ uses : actions/checkout@v4
2626
2727 - name : Install Node.js
28- uses : actions/setup-node@v3
28+ uses : actions/setup-node@v4
2929 with :
3030 node-version : 20
3131
Original file line number Diff line number Diff line change 11name : Run Lint and Tests
22
33on :
4- pull_request :
5- branches : [main]
4+ pull_request :
5+ branches : [main]
66
77jobs :
8- build :
9- runs-on : ubuntu-latest
10- strategy :
11- matrix :
12- os : [ubuntu-latest, macOS-latest, windows-latest]
13- node-version : [10.x, 18.x, 20.x]
14- steps :
15- - uses : actions/checkout@v3
8+ build :
9+ runs-on : ubuntu-latest
10+ strategy :
11+ matrix :
12+ os : [ubuntu-latest, macOS-latest, windows-latest]
13+ node-version : [18.x, 20.x]
14+ steps :
15+ - uses : actions/checkout@v4
1616
17- - name : Use Node.js ${{ matrix.node-version }}
18- uses : actions/setup-node@v3
19- with :
20- node-version : ${{ matrix.node-version }}
17+ - name : Use Node.js ${{ matrix.node-version }}
18+ uses : actions/setup-node@v4
19+ with :
20+ node-version : ${{ matrix.node-version }}
2121
22- - name : Install dependencies
23- run : npm install
22+ - name : Install dependencies
23+ run : npm install
2424
25- - name : Lint
26- run : npm run lint
25+ - name : Lint
26+ run : npm run lint
2727
28- - name : Run tests
29- run : npm test
28+ - name : Run tests
29+ run : npm test
You can’t perform that action at this time.
0 commit comments