Merge pull request #187 from skyflowapi/release/25.6.1 #29
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: CI pipeline for main branch | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| ci-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 14.17.6 | |
| - name: install node_modules | |
| run: npm install | |
| - name: Run tests | |
| run: npm run test | |
| - name: Get test coverage | |
| run: npm run test:cov | |
| - name: Codecov | |
| uses: codecov/codecov-action@v2.1.0 | |
| with: | |
| token: ${{ secrets.CODECOV_REPO_UPLOAD_TOKEN }} | |
| files: coverage/lcov.info | |
| name: codecov-skyflow-react | |
| verbose: true |