Skip to content

build(deps): bump @aws-sdk/client-s3 from 3.433.0 to 3.438.0 #311

build(deps): bump @aws-sdk/client-s3 from 3.433.0 to 3.438.0

build(deps): bump @aws-sdk/client-s3 from 3.433.0 to 3.438.0 #311

Workflow file for this run

name: 'Pull Request'
on: ['pull_request']
concurrency:
group: pr-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
name: Check lint
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-scripts
- name: Run Linting
run: yarn run lint
test:
runs-on: ubuntu-latest
name: Check build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-scripts
- name: Run Testing
run: yarn run test
build:
runs-on: ubuntu-latest
name: Check build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-scripts
- name: Run Building
run: yarn run build