Merge pull request #105 from denisx/feat/react-fast-compare #119
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: 'Recharts React Smooth' | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- master | |
jobs: | |
smooth-job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Installing deps | |
run: npm install | |
- name: Testing & Linting | |
run: | | |
npm run lint | |
npm run test | |
- name: Building packages | |
run: npm run build |