|
10 | 10 | matrix: |
11 | 11 | node-version: [18.x] |
12 | 12 | steps: |
13 | | - - uses: actions/checkout@v3 |
| 13 | + - uses: actions/checkout@v4 |
14 | 14 | - name: Use Node.js ${{ matrix.node-version }} |
15 | | - uses: actions/setup-node@v3 |
| 15 | + uses: actions/setup-node@v4 |
16 | 16 | with: |
17 | 17 | node-version: ${{ matrix.node-version }} |
18 | 18 | - run: npm install |
|
25 | 25 | matrix: |
26 | 26 | node-version: [14.x, 16.x, 18.x, 20.x, 22.x] |
27 | 27 | steps: |
28 | | - - uses: actions/checkout@v3 |
| 28 | + - uses: actions/checkout@v4 |
29 | 29 | - name: Use Node.js ${{ matrix.node-version }} |
30 | | - uses: actions/setup-node@v3 |
| 30 | + uses: actions/setup-node@v4 |
31 | 31 | with: |
32 | 32 | node-version: ${{ matrix.node-version }} |
33 | 33 | - name: Install |
|
44 | 44 | node-version: [16.x] |
45 | 45 | bundler: [webpack, browserify] |
46 | 46 | steps: |
47 | | - - uses: actions/checkout@v3 |
| 47 | + - uses: actions/checkout@v4 |
48 | 48 | - name: Use Node.js ${{ matrix.node-version }} |
49 | | - uses: actions/setup-node@v3 |
| 49 | + uses: actions/setup-node@v4 |
50 | 50 | with: |
51 | 51 | node-version: ${{ matrix.node-version }} |
52 | 52 | - name: Install |
|
64 | 64 | matrix: |
65 | 65 | node-version: [16.x] |
66 | 66 | steps: |
67 | | - - uses: actions/checkout@v3 |
| 67 | + - uses: actions/checkout@v4 |
68 | 68 | - name: Use Node.js ${{ matrix.node-version }} |
69 | | - uses: actions/setup-node@v3 |
| 69 | + uses: actions/setup-node@v4 |
70 | 70 | with: |
71 | 71 | node-version: ${{ matrix.node-version }} |
72 | 72 | - run: npm install |
|
80 | 80 | matrix: |
81 | 81 | node-version: [18.x] |
82 | 82 | steps: |
83 | | - - uses: actions/checkout@v3 |
| 83 | + - uses: actions/checkout@v4 |
84 | 84 | - name: Use Node.js ${{ matrix.node-version }} |
85 | | - uses: actions/setup-node@v3 |
| 85 | + uses: actions/setup-node@v4 |
86 | 86 | with: |
87 | 87 | node-version: ${{ matrix.node-version }} |
88 | 88 | - name: Install |
|
92 | 92 | - name: Generate coverage report |
93 | 93 | run: npm run coverage-ci |
94 | 94 | - name: Upload coverage to Codecov |
95 | | - uses: codecov/codecov-action@v1 |
| 95 | + uses: codecov/codecov-action@v4 |
96 | 96 | with: |
97 | 97 | file: ./coverage/lcov.info |
98 | 98 | fail_ci_if_error: true |
| 99 | + token: ${{ secrets.CODECOV_TOKEN }} |
0 commit comments