Skip to content

Commit f7168ff

Browse files
committed
Run tests only against Node v20.x
1 parent 28fc9bd commit f7168ff

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/beta-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ name: Beta tests
44
# Will only run for PRs and pushes to *-beta
55
on:
66
push:
7-
branches: ['**-beta', '!bump-meilisearch-v[0-9]*.[0-9]*.[0-9]*-beta']
7+
branches: ["**-beta", "!bump-meilisearch-v[0-9]*.[0-9]*.[0-9]*-beta"]
88
pull_request:
9-
branches: ['**-beta', '!bump-meilisearch-v[0-9]*.[0-9]*.[0-9]*-beta']
9+
branches: ["**-beta", "!bump-meilisearch-v[0-9]*.[0-9]*.[0-9]*-beta"]
1010

1111
jobs:
1212
integration_tests:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node: ['18', '20']
16+
node: ["20"]
1717
name: integration-tests (Node.js ${{ matrix.node }})
1818
steps:
1919
- uses: actions/checkout@v4
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
strategy:
3232
matrix:
33-
node: ['18', '20']
33+
node: ["20"]
3434
name: playground-build (Node.js ${{ matrix.node }})
3535
steps:
3636
- uses: actions/checkout@v4

.github/workflows/pre-release-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node: ['18', '20']
16+
node: ["20"]
1717
name: integration-tests (Node.js ${{ matrix.node }})
1818
steps:
1919
- uses: actions/checkout@v4
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
strategy:
3232
matrix:
33-
node: ['18', '20']
33+
node: ["20"]
3434
name: playground-build (Node.js ${{ matrix.node }})
3535
steps:
3636
- uses: actions/checkout@v4

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
node: ['18', '20']
20+
node: ["20"]
2121
name: integration-tests (Node.js ${{ matrix.node }})
2222
steps:
2323
- uses: actions/checkout@v4
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
strategy:
4141
matrix:
42-
node: ['18', '20']
42+
node: ["20"]
4343
name: playground-build (Node.js ${{ matrix.node }})
4444
steps:
4545
- uses: actions/checkout@v4
@@ -71,7 +71,7 @@ jobs:
7171
- name: Setup node
7272
uses: actions/setup-node@v4
7373
with:
74-
node-version: '18.x'
74+
node-version: "18.x"
7575
- name: Cache dependencies
7676
uses: actions/cache@v3
7777
with:

0 commit comments

Comments
 (0)