fix(deps): update dependency react-redux to v9.0.4 #222
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
name: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
- "[0-9]*" | |
paths: | |
- addon/** | |
- scripts/** | |
- babel.config.cjs | |
- package*.json | |
- webpack.config.cjs | |
- .github/workflows/unit.yml | |
pull_request: | |
branches: | |
- main | |
- "[0-9]*" | |
paths: | |
- addon/** | |
- scripts/** | |
- babel.config.cjs | |
- package*.json | |
- webpack.config.cjs | |
- .github/workflows/unit.yml | |
jobs: | |
eslint: | |
name: unittests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "16" | |
- name: Install dependencies | |
run: npm ci | |
- name: Run jest tests | |
run: npm run test:jest |