-
-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix/message-from-before-creation-was-send (#1295)
* FIX got too many messages * FIX node method * CLEAR npm cache * UPDATE deps * FIX missing event * FIX e2e tests * FIX tests
- Loading branch information
Showing
16 changed files
with
8,074 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '20.9.0' | ||
node-version-file: ".nvmrc" | ||
|
||
# https://docs.github.com/en/free-pro-team@latest/actions/guides/caching-dependencies-to-speed-up-workflows | ||
- name: Reuse npm cache folder | ||
|
@@ -46,10 +46,10 @@ jobs: | |
./node_modules | ||
./test-electron/node_modules | ||
# invalidate cache when any package.json changes | ||
key: ${{ runner.os }}-npm-x2-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | ||
key: ${{ runner.os }}-npm-x3-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-npm-x2-${{ env.cache-name }}- | ||
${{ runner.os }}-npm-x2- | ||
${{ runner.os }}-npm-x3-${{ env.cache-name }}- | ||
${{ runner.os }}-npm-x3- | ||
${{ runner.os }}- | ||
# install | ||
|
@@ -117,9 +117,9 @@ jobs: | |
./node_modules | ||
./test-electron/node_modules | ||
# invalidate cache when any package.json changes | ||
key: ${{ runner.os }}-npm-test-node-x2-${{ matrix.node }}-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | ||
key: ${{ runner.os }}-npm-test-node-x3-${{ matrix.node }}-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-npm-test-node-x2-${{ matrix.node }}-${{ env.cache-name }}- | ||
${{ runner.os }}-npm-test-node-x3-${{ matrix.node }}-${{ env.cache-name }}- | ||
${{ runner.os }}-npm-test-node | ||
${{ runner.os }}-test-node | ||
|
@@ -140,22 +140,22 @@ jobs: | |
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '20.9.0' | ||
node-version-file: ".nvmrc" | ||
|
||
# https://docs.github.com/en/free-pro-team@latest/actions/guides/caching-dependencies-to-speed-up-workflows | ||
- name: Reuse npm cache folder | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: cache-node-modules | ||
cache-name: cache-node-deno-modules | ||
with: | ||
path: | | ||
~/.npm | ||
./node_modules | ||
./test-electron/node_modules | ||
# invalidate cache when any package.json changes | ||
key: ${{ runner.os }}-npm-test-deno-x2-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | ||
key: ${{ runner.os }}-npm-test-deno-x3-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-npm-test-deno-x2-${{ env.cache-name }}- | ||
${{ runner.os }}-npm-test-deno-x3-${{ env.cache-name }}- | ||
${{ runner.os }}-npm-test-deno | ||
${{ runner.os }}-test-deno | ||
|
@@ -174,7 +174,7 @@ jobs: | |
/home/runner/.cache/deno | ||
# do not cache based on package.json because deno install randomly fails | ||
# and it would then never succeed on the first run on dependency updateds | ||
key: ${{ runner.os }}-deno-x2- | ||
key: ${{ runner.os }}-deno-x3- | ||
|
||
- uses: denoland/setup-deno@v1 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
20.10.0 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.