Skip to content
This repository was archived by the owner on Nov 20, 2023. It is now read-only.

Commit ae502d0

Browse files
committed
temp commit for testing
1 parent 3532c04 commit ae502d0

File tree

2 files changed

+59
-3
lines changed

2 files changed

+59
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
- release/**
88
pull_request:
99

10-
env:
11-
NODE_OPTIONS: '--stack-trace-limit=10000'
12-
1310
jobs:
1411
lint:
1512
name: lint and codecov
@@ -20,6 +17,8 @@ jobs:
2017

2118
- uses: actions/setup-node@v1
2219

20+
- run: node debug.js
21+
2322
- run: yarn install
2423

2524
- run: yarn lint

debug.js

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
function a() {
2+
nope();
3+
}
4+
function b() {
5+
a();
6+
}
7+
function c() {
8+
b();
9+
}
10+
function d() {
11+
c();
12+
}
13+
function e() {
14+
d();
15+
}
16+
function f() {
17+
e();
18+
}
19+
function g() {
20+
f();
21+
}
22+
function h() {
23+
g();
24+
}
25+
function i() {
26+
h();
27+
}
28+
function j() {
29+
i();
30+
}
31+
function k() {
32+
j();
33+
}
34+
function l() {
35+
k();
36+
}
37+
function m() {
38+
l();
39+
}
40+
function n() {
41+
m();
42+
}
43+
function o() {
44+
n();
45+
}
46+
function p() {
47+
o();
48+
}
49+
function q() {
50+
p();
51+
}
52+
53+
try {
54+
q();
55+
} catch (e) {
56+
console.log(e.stack);
57+
}

0 commit comments

Comments
 (0)