fix(deps): update dependency react-redux to v9 #65
Workflow file for this run
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
# .github/workflows/build.yml | |
# This workflow constitutes the CI pipeline of building and | |
# testing the project codebase. | |
name: build | |
on: | |
workflow_call: # Allow reusing this workflow in others | |
pull_request: | |
branches: ['**'] | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.9.x | |
- name: Install packages | |
run: yarn install | |
- name: Run tests | |
run: yarn test | |
- name: Generate production build | |
run: yarn build |