update batchGet DynamoDataStorage #476
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
| on: [push, pull_request] | |
| name: Code | |
| jobs: | |
| Code-Checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '14.x' | |
| - name: Cache modules | |
| uses: actions/cache@v3 | |
| with: | |
| path: '**/node_modules' | |
| key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
| - name: Install modules | |
| run: yarn | |
| - name: Lint code | |
| run: yarn lint | |
| - name: Test code | |
| run: yarn test |