Skip to content

Commit 2338747

Browse files
authored
Merge pull request #632 from MasterKale/update-testing-matrix-nov-2024
Also test Node 22, and Deno v1.46 and Deno v2.0
2 parents 77c118b + 536f7bd commit 2338747

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ciChecks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [ 20 ]
20-
deno-version: [ 'v1.41.0' ]
19+
node-version: [ 20, 22 ]
20+
deno-version: [ 'v1.46.x', 'v2.0.x' ]
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424

2525
# Install Node
2626
- name: Setup Node.js ${{ matrix.node-version }}
@@ -32,7 +32,7 @@ jobs:
3232

3333
# Install Deno
3434
- name: Setup Deno ${{ matrix.deno-version }}
35-
uses: denoland/setup-deno@v1
35+
uses: denoland/setup-deno@v2
3636
with:
3737
deno-version: ${{ matrix.deno-version }}
3838
- name: Confirm installed Deno version
@@ -41,7 +41,7 @@ jobs:
4141
# Install pnpm w/cache for quicker installs
4242
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time
4343
- name: Setup pnpm 9.12.3
44-
uses: pnpm/action-setup@v2
44+
uses: pnpm/action-setup@v4
4545
with:
4646
version: 9.12.3
4747
run_install: false
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
5252
- name: Setup pnpm cache
53-
uses: actions/cache@v3
53+
uses: actions/cache@v4
5454
with:
5555
path: ${{ env.STORE_PATH }}
5656
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ request new features, or to suggest changes to existing features.
9999
Install the following before proceeding:
100100

101101
- **Node 20.x**
102-
- **Deno 1.41.x**
102+
- **Deno v1.46.x**
103103
- **pnpm 9.12.x**
104104

105105
After pulling down the code, set up dependencies:

0 commit comments

Comments
 (0)