Skip to content

feat: Upgrade aws-sdk from 2.1362.0 to 2.1363.0 (#192) #125

feat: Upgrade aws-sdk from 2.1362.0 to 2.1363.0 (#192)

feat: Upgrade aws-sdk from 2.1362.0 to 2.1363.0 (#192) #125

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '14', '16', '18' ]
timeout-minutes: 30
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run test
- run: ./node_modules/.bin/codecov