Skip to content

chore(deps): bump @aws-sdk/client-sqs from 3.901.0 to 3.911.0 #769

chore(deps): bump @aws-sdk/client-sqs from 3.901.0 to 3.911.0

chore(deps): bump @aws-sdk/client-sqs from 3.901.0 to 3.911.0 #769

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- canary
- "*.x"
- 'main'
push:
branches:
- canary
- "*.x"
- main
permissions:
contents: read
jobs:
test-node:
runs-on: ubuntu-latest
permissions:
actions: write
checks: write
strategy:
matrix:
node-version: [20.x, 22.16.0]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: NPM Audit
run: npx audit-ci
- name: Install Node Modules
run: npm ci
- name: Run Tests and Linting
run: npm run test
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: test-reports-${{ matrix.node-version }}
path: test/reports/
test-bun:
runs-on: ubuntu-latest
permissions:
actions: read
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup Bun
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2.0.2
- name: Install Bun Packages
run: bun install --no-save
- name: Run Bun Tests
run: bun run test