Bump @aws-sdk/client-sqs from 3.507.0 to 3.569.0 #1530
Workflow file for this run
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
on: | |
push: | |
branches: | |
- main | |
- "feature/**" | |
pull_request: | |
branches: | |
- '**' | |
merge_group: | |
name: Push Event | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
services: | |
localstack: | |
image: localstack/localstack:3 | |
env: | |
SERVICES: s3,sns,sqs | |
ports: | |
- 4566:4566 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
cache: npm | |
cache-dependency-path: package.json | |
- uses: ankane/setup-opensearch@v1 | |
with: | |
opensearch-version: 2.11 | |
- name: Upgrade npm | |
run: npm install -g [email protected] | |
- name: Install dependencies | |
run: npm install | |
- name: Eslint | |
run: npm run lint | |
- name: Typecheck | |
run: npm run typecheck | |
- name: Audit | |
run: npm run audit-prod | |
- name: Unit tests | |
run: npm run test:coverage | |
- name: Wait for OpenSearch | |
run: ./bin/wait-for-opensearch/run.sh | |
- name: System tests | |
run: npm run test:system | |
- name: Run build | |
run: npm run build |