Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lzm0 committed May 21, 2024
1 parent 9466885 commit 9f8d4ad
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 64 deletions.
12 changes: 6 additions & 6 deletions yarn/action.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: 'Build Image w/ Yarn'
description: 'Build an image using yarn'
author: 'GarnerCorp'
name: "Build Image w/ Yarn"
description: "Build an image using yarn"
author: "GarnerCorp"
branding:
icon: 'aperture'
color: 'purple'
icon: "aperture"
color: "purple"
inputs:
checkout:
description: Whether or not to checkout the repository you are currently working in
Expand Down Expand Up @@ -74,7 +74,7 @@ inputs:
required: false

runs:
using: 'composite'
using: "composite"
steps:
- name: Validate inputs (yarn berry)
if: ${{ !inputs.google-credentials-json != !inputs.google-cloud-sdk-version || (inputs.yarn-version >= '2' && !inputs.npm-username != !inputs.npm-password) }}
Expand Down
116 changes: 58 additions & 58 deletions yarn/reporter.json
Original file line number Diff line number Diff line change
@@ -1,67 +1,67 @@
{
"problemMatcher": [
"problemMatcher": [
{
"owner": "yarn-fatal",
"severity": "error",
"pattern": [
{
"owner": "yarn-fatal",
"severity": "error",
"pattern": [
{
"regexp": "(YN00(?:0[19]|1[012567]|2[0-79]|30|4[67]|50|7[15])): │ (.*)",
"code": 1,
"message": 2
}
]
},
"regexp": "(YN00(?:0[19]|1[012567]|2[0-79]|30|4[67]|50|7[15])): │ (.*)",
"code": 1,
"message": 2
}
]
},
{
"owner": "yarn-warning",
"severity": "warning",
"pattern": [
{
"owner": "yarn-warning",
"severity": "warning",
"pattern": [
{
"regexp": "(YN00(?:0[34]|1[348]|3[12]|59|6[012389]|7[267])): │ (.*)",
"code": 1,
"message": 2
}
]
},
"regexp": "(YN00(?:0[34]|1[348]|3[12]|59|6[012389]|7[267])): │ (.*)",
"code": 1,
"message": 2
}
]
},
{
"owner": "yarn-info",
"severity": "notice",
"pattern": [
{
"owner": "yarn-info",
"severity": "notice",
"pattern": [
{
"regexp": "(YN00(?:0[25678]|19|4[89])): │ (.*)",
"code": 1,
"message": 2
}
]
},
"regexp": "(YN00(?:0[25678]|19|4[89])): │ (.*)",
"code": 1,
"message": 2
}
]
},
{
"owner": "yarn-YN0028",
"severity": "error",
"pattern": [
{
"owner": "yarn-YN0028",
"severity": "error",
"pattern": [
{
"regexp": "YN0028: │ ([A-Z].*)",
"message": 1
}
]
},
"regexp": "YN0028: │ ([A-Z].*)",
"message": 1
}
]
},
{
"owner": "angular-error",
"severity": "error",
"pattern": [
{
"owner": "angular-error",
"severity": "error",
"pattern": [
{
"regexp": "NG03\\d{2}: (.*)",
"message": 1
}
]
},
"regexp": "NG03\\d{2}: (.*)",
"message": 1
}
]
},
{
"owner": "karma-information",
"severity": "notice",
"pattern": [
{
"owner": "karma-information",
"severity": "notice",
"pattern": [
{
"regexp": "(TOTAL: \\d+ FAILED, \\d+ SUCCESS)",
"message": 1
}
]
"regexp": "(TOTAL: \\d+ FAILED, \\d+ SUCCESS)",
"message": 1
}
]
]
}
]
}

0 comments on commit 9f8d4ad

Please sign in to comment.