test: threshold를 0으로 수정하여 오차 변경 #148
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: Run tests | |
| on: [push, pull_request] | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2.1.5 | |
| with: | |
| node-version: 16.16.0 | |
| - name: install | |
| run: yarn | |
| working-directory: ./packages/infinitegrid | |
| - name: lint | |
| run: npm run lint | |
| working-directory: ./packages/infinitegrid | |
| - name: test | |
| run: npm run coverage | |
| working-directory: ./packages/infinitegrid | |
| - name: Coveralls GitHub Action | |
| uses: coverallsapp/github-action@v1.1.2 | |
| with: | |
| path-to-lcov: ./packages/infinitegrid/coverage/lcov.info | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |