[Snyk] Security upgrade react-scripts from 3.4.4 to 5.0.0 #134
This file contains hidden or 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: Smoke | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12 | |
| - name: Install | |
| run: npm run install-all | |
| - name: Setup | |
| run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | |
| - name: Lint | |
| run: npm run lint | |
| - name: Test | |
| run: npm run test | |
| - name: Artifact - coverage | |
| uses: actions/upload-artifact@v2 | |
| with: | |
| name: coverage | |
| path: coverage | |
| - name: Build | |
| run: npm run build-all | |
| - name: Artifact - examples build | |
| uses: actions/upload-artifact@v2 | |
| with: | |
| name: examples-build | |
| path: examples/build | |
| - name: Hot | |
| run: npm run check-hot |