Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:

- name: Install dependencies
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Lint
run: yarn lint
Expand Down Expand Up @@ -83,15 +85,23 @@ jobs:

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Install React ${{ matrix.react.version }} and React-DOM ${{ matrix.react.react-dom.version }}
run: yarn add -D react@${{ matrix.react.version }} react-dom@${{ matrix.react.react-dom.version }} @types/react@${{ matrix.react.types }} @types/react-dom@${{ matrix.react.react-dom.types }}
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Install TypeScript ${{ matrix.ts }}
run: yarn add typescript@${{ matrix.ts }}
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Install build artifact
run: yarn add ./package.tgz
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Erase path aliases
run: sed -i -e /@remap-prod-remove-line/d ./tsconfig.base.json
Expand Down Expand Up @@ -176,6 +186,8 @@ jobs:
- name: Install example deps
working-directory: ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Install Playwright browser if necessary
working-directory: ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
Expand All @@ -194,6 +206,8 @@ jobs:
- name: Install build artifact
working-directory: ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
run: yarn add ./package.tgz
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Show installed package versions
working-directory: ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
Expand Down Expand Up @@ -234,6 +248,8 @@ jobs:

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Remove existing React-Redux
run: yarn remove react-redux
Expand All @@ -248,6 +264,8 @@ jobs:

- name: Install build artifact
run: yarn add ./package.tgz
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Show installed React-Redux versions
run: yarn info react-redux && yarn why react-redux
Expand Down Expand Up @@ -289,6 +307,8 @@ jobs:

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Download build artifact
uses: actions/download-artifact@v4
Expand All @@ -301,9 +321,13 @@ jobs:

- name: Install React ${{ matrix.react.version }} and React-DOM ${{ matrix.react.react-dom.version }}
run: yarn add -D react@${{ matrix.react.version }} react-dom@${{ matrix.react.react-dom.version }} @types/react@${{ matrix.react.types }} @types/react-dom@${{ matrix.react.react-dom.types }}
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Install build artifact
run: yarn add ./package.tgz
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Erase path aliases
run: sed -i -e /@remap-prod-remove-line/d ./tsconfig.base.json
Expand Down
14 changes: 7 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
node_modules
dist
lib
coverage
es
/dist*/
/lib/
/coverage/
/es/
temp/
react-redux-*/
redux-toolkit/
Expand All @@ -21,9 +21,9 @@ website/.yarn/
.pnp.*
*.tgz

.yalc
yalc.lock
yalc.sig
#.yalc
#yalc.lock
#yalc.sig

lib/core/metadata.js
lib/core/MetadataBlog.js
Expand Down
Loading
Loading