Bump @aws-sdk/client-s3 from 3.712.0 to 3.717.0 in /lambda #428
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
name: Lambdas | |
on: push | |
jobs: | |
lint_javascript: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
directory: | |
- lambda/ | |
defaults: | |
run: | |
working-directory: ${{ matrix.directory }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ${{ matrix.directory }}/.nvmrc | |
- name: NPM install | |
run: npm ci | |
- name: Lint Javascript code | |
run: npm run lint | |
lint: # this is a workaround, see https://github.community/t/status-check-for-a-matrix-jobs/127354/6 | |
if: ${{ always() }} | |
needs: [lint_javascript] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check build status of all needed jobs | |
if: ${{ needs.lint_javascript.result != 'success' }} | |
run: exit 1 |