fix: rename evaluation event property from data to body #786
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
| # Generates baseline code coverage | |
| name: coverage | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| registry-url: 'https://registry.npmjs.org' | |
| node-version: 18 | |
| cache: 'npm' | |
| - name: Install | |
| run: npm ci | |
| - name: Test | |
| run: npm run test | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v3 |