Skip to content

Commit

Permalink
Update development packages (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso authored Dec 28, 2024
2 parents e08a94d + e8d270e commit 7555916
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 67 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,25 @@ jobs:
name: Node ${{ matrix.node }} build
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: npm ci
run: npm ci
- name: npm test
run: npm test
- name: coverage artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coveralls_node_${{ matrix.node }}_r${{ github.run_id }}_${{ github.run_number }}
path: coverage
- name: fix lcov.info
run: |
sed -i -E 's/SF:(\.\.\/\.\.(.+))/SF:\2/' coverage/lcov.info
- name: coveralls
uses: coverallsapp/github-action@v1
uses: coverallsapp/github-action@v2
with:
flag-name: node-${{ matrix.node }}
parallel: true
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: coveralls report
uses: coverallsapp/github-action@v1
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "node-16,node-18,node-20"
2 changes: 1 addition & 1 deletion .github/workflows/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: gitlabels/gitlabels@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
124 changes: 67 additions & 57 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"license"
],
"devDependencies": {
"eslint": "^8.57.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-config-xo": "0.45.x",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"prettier": "^3.4.2",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^3.19.3",
"yeoman-test": "^6.3.0"
Expand Down

0 comments on commit 7555916

Please sign in to comment.