Skip to content

Commit

Permalink
Node 14 is now supported once again
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoH2O1999 committed Dec 20, 2022
1 parent a67b320 commit 082865c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test:
strategy:
matrix:
node-version: [16.x, 18.x, 19.x]
node-version: [14.x, 16.x, 18.x, 19.x]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: true
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
strategy:
matrix:
node-version: [16.x, 18.x, 19.x]
node-version: [14.x, 16.x, 18.x, 19.x]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: true
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@matteoh2o1999/github-actions-jest-reporter",
"version": "1.0.2",
"version": "1.1.0",
"description": "A Github Actions reporter for Jest supporting log folding",
"main": "src/index.js",
"types": "src/index.d.ts",
"engines": {
"node": ">=16.6.0"
"node": ">=14.0.0"
},
"keywords": [
"jest",
Expand Down
2 changes: 1 addition & 1 deletion src/gha.reporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class GithubActionsReporter extends reporters.BaseReporter {

__getResultChildren(suiteResult, ancestors) {
let node = {
name: ancestors.at(-1),
name: ancestors[ancestors.length - 1],
passed: true,
children: []
};
Expand Down

0 comments on commit 082865c

Please sign in to comment.