Skip to content

Make Alt Text Distinct from Description #4452

Make Alt Text Distinct from Description

Make Alt Text Distinct from Description #4452

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node LTS
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Run Lint
run: yarn lint:check
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node LTS
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Run Build
run: yarn build