Skip to content

Commit eca2a9a

Browse files
committed
Update fixtures
1 parent 0b59ca1 commit eca2a9a

3 files changed

Lines changed: 49 additions & 6 deletions

File tree

  • tests/fixtures

tests/fixtures/default/.github/workflows/ci.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
jobs:
15-
test:
16-
name: "Tests"
15+
lint:
16+
name: "Lints"
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 10
1919

@@ -27,6 +27,20 @@ jobs:
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

tests/fixtures/pnpm/.github/workflows/ci.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
jobs:
15-
test:
16-
name: "Tests"
15+
lint:
16+
name: "Lints"
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 10
1919

@@ -28,6 +28,21 @@ jobs:
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

tests/fixtures/yarn/.github/workflows/ci.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
jobs:
15-
test:
16-
name: "Tests"
15+
lint:
16+
name: "Lints"
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 10
1919

@@ -27,6 +27,20 @@ jobs:
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

0 commit comments

Comments
 (0)