fix: upgrade aws-sdk from 2.1028.0 to 2.1611.0 #1407
This file contains 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: push | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: update npm dependency | |
run: npm i -g npm@7 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run lint | |
run: npm run lint:ci | |
- name: Run tests | |
run: npm run test:ci |