File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 lint :
10+ name : Lint Code
1011 runs-on : ubuntu-latest
1112 steps :
1213 - uses : actions/checkout@v4
@@ -26,10 +27,11 @@ jobs:
2627 - name : Install dependencies
2728 run : pnpm install --frozen-lockfile || pnpm install
2829
29- - run : pnpm run lint
30+ - name : Run ESLint
31+ run : pnpm run lint
3032
3133 build :
32- needs : lint
34+ name : Build (Node ${{ matrix.node-version }})
3335 runs-on : ubuntu-latest
3436 strategy :
3537 matrix :
@@ -52,10 +54,11 @@ jobs:
5254 - name : Install dependencies
5355 run : pnpm install --frozen-lockfile || pnpm install
5456
55- - run : pnpm run build
57+ - name : Build SDK
58+ run : pnpm run build
5659
5760 test :
58- needs : build
61+ name : Run Tests
5962 runs-on : ubuntu-latest
6063 steps :
6164 - uses : actions/checkout@v4
7578 - name : Install dependencies
7679 run : pnpm install --frozen-lockfile || pnpm install
7780
78- - run : pnpm run test
81+ - name : Run Jest tests
82+ run : pnpm run test
You can’t perform that action at this time.
0 commit comments