Skip to content

updated aws4 version and fixed the Authentication issue #105

updated aws4 version and fixed the Authentication issue

updated aws4 version and fixed the Authentication issue #105

Workflow file for this run

name: verify
on:
pull_request:
branches: [ '*' ]
push:
branches: [ master ]
workflow_dispatch:
jobs:
verify:
if: "!contains(github.event.head_commit.message, 'ci skip')"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Setup .npmrc file
uses: actions/setup-node@v2
with:
node-version: 14
- run: npm ci
- name: Run tests
run: make test
shell: bash