Skip to content

Commit 095fc25

Browse files
committed
gh actions
1 parent 1ded395 commit 095fc25

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/build-and-test.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
jobs:
77
lint:
88
name: Lint
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
strategy:
1111
matrix:
12-
node-version: [ 22 ]
12+
node-version: [22]
1313
timeout-minutes: 5
1414

1515
steps:
@@ -42,7 +42,10 @@ jobs:
4242
build:
4343
name: Build
4444
needs: lint
45-
runs-on: ubuntu-latest
45+
runs-on: ubuntu-22.04
46+
strategy:
47+
matrix:
48+
node-version: [22]
4649
timeout-minutes: 5
4750

4851
steps:
@@ -66,7 +69,10 @@ jobs:
6669

6770
test:
6871
name: Test
69-
runs-on: ubuntu-latest
72+
runs-on: ubuntu-22.04
73+
strategy:
74+
matrix:
75+
node-version: [22]
7076
timeout-minutes: 10
7177
steps:
7278
- name: Checkout

.github/workflows/changesets.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
name: Create pull request or publish
1818
needs: build-and-test
1919
permissions: write-all
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-22.04
2121
strategy:
2222
matrix:
23-
node-version: [ 22 ]
23+
node-version: [22]
2424
timeout-minutes: 5
2525

2626
steps:

0 commit comments

Comments
 (0)