File tree Expand file tree Collapse file tree
default/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ concurrency:
1212 cancel-in-progress : true
1313
1414jobs :
15- test :
16- name : " Tests "
15+ lint :
16+ name : " Lints "
1717 runs-on : ubuntu-latest
1818 timeout-minutes : 10
1919
2727 run : npm ci
2828 - name : Lint
2929 run : npm run lint
30+
31+ test :
32+ name : " Tests"
33+ runs-on : ubuntu-latest
34+ timeout-minutes : 10
35+
36+ steps :
37+ - uses : actions/checkout@v4
38+ - uses : actions/setup-node@v4
39+ with :
40+ node-version : 18
41+ cache : npm
42+ - name : Install Dependencies
43+ run : npm ci
3044 - name : Run Tests
3145 run : npm run test
3246
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ concurrency:
1212 cancel-in-progress : true
1313
1414jobs :
15- test :
16- name : " Tests "
15+ lint :
16+ name : " Lints "
1717 runs-on : ubuntu-latest
1818 timeout-minutes : 10
1919
2828 run : pnpm install --frozen-lockfile
2929 - name : Lint
3030 run : pnpm lint
31+
32+ test :
33+ name : " Tests"
34+ runs-on : ubuntu-latest
35+ timeout-minutes : 10
36+
37+ steps :
38+ - uses : actions/checkout@v4
39+ - uses : pnpm/action-setup@v4
40+ - uses : actions/setup-node@v4
41+ with :
42+ node-version : 18
43+ cache : pnpm
44+ - name : Install Dependencies
45+ run : pnpm install --frozen-lockfile
3146 - name : Run Tests
3247 run : pnpm test
3348
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ concurrency:
1212 cancel-in-progress : true
1313
1414jobs :
15- test :
16- name : " Tests "
15+ lint :
16+ name : " Lints "
1717 runs-on : ubuntu-latest
1818 timeout-minutes : 10
1919
2727 run : yarn install --frozen-lockfile
2828 - name : Lint
2929 run : yarn lint
30+
31+ test :
32+ name : " Tests"
33+ runs-on : ubuntu-latest
34+ timeout-minutes : 10
35+
36+ steps :
37+ - uses : actions/checkout@v4
38+ - uses : actions/setup-node@v4
39+ with :
40+ node-version : 18
41+ cache : yarn
42+ - name : Install Dependencies
43+ run : yarn install --frozen-lockfile
3044 - name : Run Tests
3145 run : yarn test
3246
You can’t perform that action at this time.
0 commit comments