Skip to content

Commit 529a437

Browse files
committed
chore: bump dependencies
1 parent b86c354 commit 529a437

File tree

8 files changed

+9683
-4114
lines changed

8 files changed

+9683
-4114
lines changed

.gitattributes

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Consistent line endings
2+
* text=auto eol=lf
3+
4+
# Images
5+
*.png binary
6+
*.jpg binary
7+
*.jpeg binary
8+
*.gif binary
9+
*.ico binary
10+
*.tiff binary
11+
12+
# Fonts
13+
*.oft binary
14+
*.ttf binary
15+
*.eot binary
16+
*.woff binary
17+
*.woff2 binary
18+
19+
# Videos
20+
*.mov binary
21+
*.mp4 binary
22+
*.webm binary
23+
*.ogg binary
24+
*.mpg binary
25+
*.3gp binary
26+
*.avi binary
27+
*.wmv binary
28+
*.flv binary
29+
*.asf binary
30+
31+
# Audio
32+
*.mp3 binary
33+
*.wav binary
34+
*.flac binary
35+
36+
# Compressed
37+
*.gz binary
38+
*.zip binary
39+
*.7z binary

__tests__/problemMatcher.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe("problemMatcher", () => {
2121
});
2222
it("matches file path", () => {
2323
const reportOutput = [
24-
"src/test.html: line 1, col 1, tag is not closed"
24+
"src/test.html: line 1, col 1, tag is not closed",
2525
];
2626
const results = matchResults(reportOutput, regexp);
2727
expect(results.length).toEqual(1);
@@ -38,7 +38,7 @@ describe("problemMatcher", () => {
3838
it("matches violations", () => {
3939
const reportOutput = [
4040
"src/test.html: line 1, col 1, tag is not closed",
41-
"src/test.html: line 2, col 2, only <head> and <body> may be children of <html>"
41+
"src/test.html: line 2, col 2, only <head> and <body> may be children of <html>",
4242
];
4343
const results = matchResults(reportOutput, regexp);
4444
expect(results.length).toEqual(2);
@@ -47,7 +47,7 @@ describe("problemMatcher", () => {
4747
const reportOutput = [
4848
"src/test.html: line 1, col 1, tag is not closed",
4949
"src/foo.html: line 2, col 2, only <head> and <body> may be children of <html>",
50-
"src/bar.html: line 22, col 52, only <head> and <body> may be children of <html>"
50+
"src/bar.html: line 22, col 52, only <head> and <body> may be children of <html>",
5151
];
5252
const results = matchResults(reportOutput, regexp);
5353
expect(results.length).toEqual(3);

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ inputs:
1515
default: add
1616

1717
runs:
18-
using: "node12"
18+
using: "node16"
1919
main: "dist/index.js"

0 commit comments

Comments
 (0)