Skip to content

Commit cc4891f

Browse files
committed
Attempt to fix GH actions
1 parent e8b627b commit cc4891f

File tree

7 files changed

+17
-33
lines changed

7 files changed

+17
-33
lines changed

.github/setup/action.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
build:
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: ./.github/workflows/setup.yml@v1
20+
- uses: actions/checkout@v4
21+
22+
- uses: ./.github/actions/setup
2123
with:
2224
node-version: '22'
2325

.github/workflows/command-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
os: [ubuntu-24.04, windows-latest]
2323
node-version: [22]
2424
steps:
25+
- uses: actions/checkout@v4
26+
2527
- uses: ./.github/actions/setup
2628
with:
2729
node-version: ${{ matrix.node-version }}

.github/workflows/e2e.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
timeout-minutes: 60
2020
runs-on: ubuntu-24.04
2121
steps:
22+
- uses: actions/checkout@v4
23+
2224
- uses: ./.github/actions/setup
2325
with:
2426
node-version: '22'

.github/workflows/preview.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
name: Build Preview
1919
runs-on: ubuntu-24.04
2020
steps:
21+
- uses: actions/checkout@v4
22+
2123
- uses: ./.github/actions/setup
2224
with:
2325
node-version: '22'

.github/workflows/release-preview.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
name: Deploy Release Preview
1919
runs-on: ubuntu-24.04
2020
steps:
21+
- uses: actions/checkout@v4
22+
2123
- uses: ./.github/actions/setup
2224
with:
2325
node-version: '22'

.github/workflows/sanity.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
name: Build Extension.js
1212
runs-on: ubuntu-24.04
1313
steps:
14+
- uses: actions/checkout@v4
15+
1416
- uses: ./.github/actions/setup
1517
with:
1618
node-version: '22'
@@ -23,6 +25,8 @@ jobs:
2325
needs: build
2426
runs-on: ubuntu-24.04
2527
steps:
28+
- uses: actions/checkout@v4
29+
2630
- uses: ./.github/actions/setup
2731
with:
2832
node-version: '22'
@@ -38,6 +42,8 @@ jobs:
3842
env:
3943
FORCE_COLOR: true
4044
steps:
45+
- uses: actions/checkout@v4
46+
4147
- uses: ./.github/actions/setup
4248
with:
4349
node-version: '22'

0 commit comments

Comments
 (0)