We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6046df1 commit cd23e5dCopy full SHA for cd23e5d
.github/build.yml renamed to .github/workflows/build.yml
@@ -16,7 +16,7 @@ jobs:
16
fail-fast: false
17
matrix:
18
os: [ubuntu-latest, windows-latest, macos-latest]
19
- node-version: [10.x, 12.x, 14.x]
+ node-version: [18.x, 20.x, 22.x]
20
21
runs-on: ${{ matrix.os }}
22
@@ -26,13 +26,13 @@ jobs:
26
uses: actions/setup-node@v1
27
with:
28
node-version: ${{ matrix.node-version }}
29
- - run: npm ci
+ - run: npm i
30
- run: npm run build --if-present
31
- run: npm test
32
33
- name: Coveralls
34
- uses: coverallsapp/github-action@master
+ uses: coverallsapp/github-action@main
35
36
github-token: ${{ secrets.GITHUB_TOKEN }}
37
- path-to-lcov: ./test/lcov.info
+ path-to-lcov: ./coverage/lcov.info
38
.github/workflows/codeql-analysis.yml
0 commit comments