chore(deps): update dependency @types/node to v16.18.126 #2563
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: Tests | |
| on: [push, pull_request] | |
| env: | |
| CI: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: "16.x" | |
| - name: Install dependencies | |
| run: yarn --frozen-lockfile | |
| - name: Run lint | |
| run: yarn lint | |
| - name: Run tests | |
| run: yarn test --coverage | |
| - name: Run build | |
| run: yarn build | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |