Skip to content

Commit 01e397d

Browse files
committed
chore(ci): remove dynamically named ci so we can require it for pull requests
1 parent 698b995 commit 01e397d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
outputs:
6565
head-sha: ${{ steps.set-SHAs.outputs.head }}
6666
base-sha: ${{ steps.set-SHAs.outputs.base }}
67-
name: Build ${{ inputs.ref }} on ${{ matrix.system }} node v${{ matrix.node-version }}
67+
name: Build
6868
steps:
6969
- name: Check out code
7070
uses: actions/checkout@v4

.github/workflows/compare-results.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
## --- SETUP --- ##
5151
- name: Use Node LTS version
52-
uses: actions/setup-node@v3
52+
uses: actions/setup-node@v4
5353
with:
5454
node-version: 18
5555
cache: yarn
@@ -95,7 +95,7 @@ jobs:
9595
token: ${{ secrets.GITHUB_TOKEN }}
9696

9797
fetch-build-artifacts:
98-
name: Fetch & validate build artifacts for ${{ matrix.branch }}
98+
name: Fetch & validate build artifacts
9999
strategy:
100100
matrix:
101101
branch:
@@ -130,9 +130,9 @@ jobs:
130130

131131
## --- SETUP --- ##
132132
- name: Use Node LTS version
133-
uses: actions/setup-node@v3
133+
uses: actions/setup-node@v4
134134
with:
135-
node-version: ${{ matrix.branch == inputs.base-sha && '16' || '18' }}
135+
node-version: 18
136136
cache: yarn
137137

138138
## --- YARN CACHE --- ##

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
fetch-depth: 0
5151

5252
- name: Use Node LTS version
53-
uses: actions/setup-node@v3
53+
uses: actions/setup-node@v4
5454
with:
5555
node-version: 18
5656
cache: yarn

.github/workflows/publish-site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
fetch-depth: 0
4747

4848
- name: Use Node LTS version
49-
uses: actions/setup-node@v3
49+
uses: actions/setup-node@v4
5050
with:
5151
node-version: 18
5252
cache: yarn

.github/workflows/vrt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fetch-depth: 0
3333

3434
- name: Use Node LTS version
35-
uses: actions/setup-node@v3
35+
uses: actions/setup-node@v4
3636
with:
3737
node-version: 18
3838
cache: yarn

0 commit comments

Comments
 (0)