Skip to content

build(deps): bump @aws-sdk/client-codebuild from 3.438.0 to 3.484.0 #362

build(deps): bump @aws-sdk/client-codebuild from 3.438.0 to 3.484.0

build(deps): bump @aws-sdk/client-codebuild from 3.438.0 to 3.484.0 #362

Workflow file for this run

name: lint, test and build
on:
pull_request:
types:
- opened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 16
- name: NPM Install
run: npm ci
- name: Check Format
run: npm run format:check
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test