Skip to content

Commit 939f966

Browse files
committed
Merge remote-tracking branch 'origin/main' into benelan/8057-input-message
* origin/main: build(node): bump node version to v20 (latest LTS) (#8381) build: swap ts-node for tsx (#8196) chore: release next build(deps): update dependency @types/prettier to v2.7.3 (#8375) build(deps): update dependency ng-packagr to v17.0.2 (#8362) test(tab-nav): stabilize test (#8356) fix(list-item): drag grid cell should be accessible via arrow keys. (#8353) chore: release next feat(list): Add `calciteListDragStart` and `calciteListDragEnd` events for when a drag starts and ends. (#8361) build(deps): update dependency tailwindcss to v3.3.6 (#8376) ci(eslint): disable eslint rules that are failing (#8372) chore: release next fix: replace "\n" to support Windows for tokens output (#8352) chore: release next ci(next): install deps before running npm scripts (#8370) feat: provide legacy CSS custom props for backwards compatibility (#8355) fix(input-date-picker): no longer emits redundant change event (#8341) fix(shell-panel): adds border at the start when slotted in `panel-end` (#8314) build(deps): update dependency sortablejs to v1.15.1 (#8364)
2 parents 98cd22b + bfdf5c5 commit 939f966

File tree

40 files changed

+2537
-1221
lines changed

40 files changed

+2537
-1221
lines changed

.github/workflows/deploy-latest.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ jobs:
2626
token: ${{ secrets.ADMIN_TOKEN }}
2727
ref: main
2828
- name: Setup Node
29+
if: ${{ steps.release.outputs.releases_created }}
2930
uses: actions/setup-node@v3
3031
with:
31-
node-version: 18
32+
node-version-file: package.json
3233
registry-url: "https://registry.npmjs.org"
3334
- name: Build Packages and Publish to NPM
3435
if: ${{ steps.release.outputs.releases_created }}

.github/workflows/deploy-next.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@ jobs:
2828
GH_TOKEN_FOR_STORYBOOK: ${{ github.actor }}:${{ secrets.ADMIN_TOKEN }}
2929
run: |
3030
if [ "$NEXT_RELEASE_ENABLED" == "true" ]; then
31+
npm install
32+
3133
if npm run util:is-next-deployable; then
3234
git config --global user.email "github-actions[bot]@users.noreply.github.com"
3335
git config --global user.name "github-actions[bot]"
3436
35-
npm install
36-
# version the packages with lerna before building to ensure
37+
# version the packages with lerna before building to ensure
3738
# the version in the CC source code preamble is correct for deployment
3839
npm run version:next
3940
npm run build

.github/workflows/pr-tests_eslint-plugin-calcite-components.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,13 @@ on:
1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
14-
15-
strategy:
16-
matrix:
17-
node-version: [16.x]
18-
1914
steps:
20-
- uses: actions/checkout@v1
21-
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v1
15+
- name: Checkout Repository
16+
uses: actions/checkout@v3
17+
- name: Setup Node
18+
uses: actions/setup-node@v3
2319
with:
24-
node-version: ${{ matrix.node-version }}
20+
node-version-file: package.json
2521
- name: npm install, build, and test
2622
run: |
2723
npm install

.github/workflows/remove-next-changelog-entries.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: 16
21+
node-version-file: package.json
2222
- name: Remove Next Changelog Entries
2323
run: |
2424
git pull

.github/workflows/update-browserslist-db.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fetch-depth: 0
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: lts/*
15+
node-version-file: package.json
1616
cache: npm
1717
- name: Run update-browserslist-db
1818
run: |

0 commit comments

Comments
 (0)