Skip to content

updated certification images on homepage and landing #11586

updated certification images on homepage and landing

updated certification images on homepage and landing #11586

Workflow file for this run

name: 'CI'
on:
pull_request:
merge_group:
push:
branches:
- main
jobs:
test:
name: 'Run Tests 🧪'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Setup Node.js
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run test:ci
lint:
name: 'Lint'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Setup Node.js
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
with:
node-version-file: '.nvmrc'
- name: Install Dependencies
run: npm ci
- name: Run lint check
run: npm run lint