Skip to content

feat: ACTINSTS-2182 - Made changes to add center aligned pencil icon … #1557

feat: ACTINSTS-2182 - Made changes to add center aligned pencil icon …

feat: ACTINSTS-2182 - Made changes to add center aligned pencil icon … #1557

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: Install dependencies
shell: bash
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Format
run: yarn format
- name: Test
run: yarn test