chore: bump version to 34; fix several errors (#45) #109
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 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - '**' | |
| jobs: | |
| Runner: | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Git Source | |
| uses: actions/checkout@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '16' | |
| - name: Install dependencies | |
| run: | | |
| npm i --force | |
| - name: Continuous integration | |
| run: | | |
| npm run lint | |
| npm run test | |
| - name: Code coverage | |
| uses: codecov/codecov-action@v3.0.0 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |