Skip to content

Bump aws-sdk from 2.1681.0 to 2.1683.0 #2428

Bump aws-sdk from 2.1681.0 to 2.1683.0

Bump aws-sdk from 2.1681.0 to 2.1683.0 #2428

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Run Tests
run: |
yarn run lint:js
yarn test
env:
CI: true