Skip to content

chore: bump @aws-sdk/client-s3 from 3.842.0 to 3.848.0 #1289

chore: bump @aws-sdk/client-s3 from 3.842.0 to 3.848.0

chore: bump @aws-sdk/client-s3 from 3.842.0 to 3.848.0 #1289

Workflow file for this run

name: Lint Checks (ESLint / Prettier)
on:
pull_request:
types:
- opened
- ready_for_review
- synchronize
- labeled
branches:
- main
jobs:
lint:
name: Check Linting and Formatting
timeout-minutes: 5
runs-on: ubuntu-latest
if: ${{ github.event.action == 'opened' || github.event.action == 'ready_for_review' || github.event.action == 'synchronize' || (github.event.action == 'labeled' && github.event.label.name == 'force ci') }}
steps:
- uses: step-security/harden-runner@6c439dc8bdf85cadbbce9ed30d1c7b959517bc49 # v2.12.2
with:
egress-policy: block
allowed-endpoints: >
api.github.com:443
github.com:443
registry.npmjs.org:443
- name: Git Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Run Prettier
run: node --run prettier
- name: Run ESLint
run: node --run lint