Skip to content

Commit

Permalink
Upgrade dependencies (#689)
Browse files Browse the repository at this point in the history
* Upgrade dependencies

* Use Node 20

* Disable bundlesize for now
  • Loading branch information
kmjennison authored Nov 5, 2023
1 parent 48654ad commit ae83e42
Show file tree
Hide file tree
Showing 5 changed files with 2,818 additions and 3,646 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v1
with:
node-version: 18.x
node-version: 20.x
- name: Install dependencies
run: yarn install
# Build before running unit tests so that built types are updated before
Expand All @@ -21,7 +21,9 @@ jobs:
run: yarn test # generates coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
- name: Check bundle sizes
run: yarn run bundlesize:no-build
env:
BUNDLESIZE_GITHUB_TOKEN: ${{ secrets.BUNDLESIZE_GITHUB_TOKEN }}
# Disabling bundlesize for now because of:
# https://github.com/siddharthkp/bundlesize/pull/370
# - name: Check bundle sizes
# run: yarn run bundlesize:no-build
# env:
# BUNDLESIZE_GITHUB_TOKEN: ${{ secrets.BUNDLESIZE_GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18.x
node-version: 20.x
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: yarn test
Expand Down
Loading

0 comments on commit ae83e42

Please sign in to comment.