Skip to content

Bumped version to 4.35.3 #648

Bumped version to 4.35.3

Bumped version to 4.35.3 #648

Workflow file for this run

name: Check Lint, Tests and Build
on:
pull_request:
branches: [main, feature/*, fix/*]
types: [opened, reopened, ready_for_review, synchronize]
jobs:
notify:
if: github.event.pull_request.draft == false
name: Slack notification
runs-on: ubuntu-latest
steps:
- name: Inform channels
uses: fjogeleit/http-request-action@v1
with:
url: '${{ secrets.SLACK_WEBHOOK_URL }}'
method: 'POST'
customHeaders: '{"Content-Type": "application/json"}'
data: '{ "title": "${{ github.event.pull_request.title }}", "author": "${{ github.event.pull_request.user.login }}", "link": "${{ github.event.pull_request.html_url }}"}'
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 20
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
scope: '@aws'
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Run Unit tests
run: npm run tests:unit
- name: Run Lint
run: npm run lint