- Notifications
You must be signed in to change notification settings - Fork42
chore: update jest configuration and dependencies#70
Workflow file for this run
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:test | |
| on:[push] | |
| jobs: | |
| build: | |
| runs-on:ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version:[10.x, 12.x] | |
| steps: | |
| -uses:actions/checkout@v2 | |
| -name:Setup node | |
| uses:actions/setup-node@v1 | |
| with: | |
| node-version:${{ matrix.node }} | |
| -run:yarn install | |
| -run:yarn lint | |
| -run:yarn test |