Skip to content

Commit 10bd878

Browse files
bump dwn sdk to v0.2.7 (#92)
* bump dwn sdk to v0.2.7 * bump dwn-sql-store * Bump readable-stream packages to align with dwn-sdk-js Signed-off-by: Frank Hinek <[email protected]> * Test under both Node.js 18 and 20 with pinned CI actions Signed-off-by: Frank Hinek <[email protected]> * Bump dwn-server version Signed-off-by: Frank Hinek <[email protected]> --------- Signed-off-by: Frank Hinek <[email protected]> Co-authored-by: Frank Hinek <[email protected]>
1 parent 0a99f51 commit 10bd878

File tree

3 files changed

+44
-401
lines changed

3 files changed

+44
-401
lines changed

.github/workflows/ci-test.yml

+14-10
Original file line numberDiff line numberDiff line change
@@ -6,46 +6,50 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88

9+
strategy:
10+
matrix:
11+
node: [18, 20]
12+
913
steps:
1014
- name: Check out repository
11-
uses: actions/checkout@v4
15+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
1216

1317
- name: Set up Node.js
14-
uses: actions/setup-node@v3
18+
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
1519
with:
16-
node-version: 18
20+
node-version: ${{ matrix.node }}
1721

1822
- name: Install dependencies
19-
run: npm install
23+
run: npm ci
2024

2125
- name: Run tests
2226
run: npm run test
2327

2428
- name: Upload test coverage to Codecov
25-
uses: codecov/codecov-action@v3
29+
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
2630
env:
2731
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2832

2933
container-build:
3034
runs-on: ubuntu-latest
3135
steps:
3236
- name: Check out repository
33-
uses: actions/checkout@v4
37+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3438
- run: docker build .
3539

3640
lint:
3741
runs-on: ubuntu-latest
3842
steps:
39-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4044

41-
- uses: DavidAnson/markdownlint-cli2-action@v13
45+
- uses: DavidAnson/markdownlint-cli2-action@ed4dec634fd2ef689c7061d5647371d8248064f1 #v13.0.0
4246
with:
4347
globs: '**/*.md'
4448

4549
- name: Set up Node.js
46-
uses: actions/setup-node@v3
50+
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
4751
with:
48-
node-version: 18
52+
node-version: 20
4953

5054
- name: Install dependencies
5155
run: npm ci

0 commit comments

Comments
 (0)