Skip to content

Commit 1e00d19

Browse files
Dependency updates (#80)
* chore(deps): update dependency @azure/cosmos to v3.17.3 * Update to node 20 in publish action * Cosmos dependency update * Use npm CI instead of install in CI (more reliable builds) * No need to run test and coverage separately * fix warning on test * update ESLint * Update Mocha * Update Graphql * upgrade typescript * upgrade bson * pull back to 0.1.0 -- don't cut a release yet --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent f21a531 commit 1e00d19

7 files changed

Lines changed: 1456 additions & 5521 deletions

File tree

.github/workflows/publish-github.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
# Setup .npmrc file to publish to GitHub Packages
1414
- uses: actions/setup-node@v1
1515
with:
16-
node-version: "12.x"
16+
node-version: "20.x"
1717
# Defaults to the user or organization that owns the workflow file
1818
# scope: '@octocat'
19-
- run: npm install
19+
- run: npm ci
2020
- run: npm run build
21+
# - run: npm run coverage
2122
- run: npm run test
2223
- run: npm run lint
23-
- run: npm run coverage
2424

2525
publish-npm:
2626
needs: build
@@ -30,9 +30,9 @@ jobs:
3030
- uses: actions/checkout@v2
3131
- uses: actions/setup-node@v1
3232
with:
33-
node-version: 12
33+
node-version: 20
3434
registry-url: https://registry.npmjs.org/
35-
- run: npm install
35+
- run: npm ci
3636
- run: npm run build
3737
- run: npm publish
3838
env:

0 commit comments

Comments
 (0)