Skip to content

[docs] Created a docs directory and added Markdown linting (#513) #64

[docs] Created a docs directory and added Markdown linting (#513)

[docs] Created a docs directory and added Markdown linting (#513) #64

Workflow file for this run

name: Code Quality Assurance
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Check installs
run: npm ci --legacy-peer-deps
- name: Quality check - prettier
run: npm run prettier:check
- name: Quality check - eslint
run: npm run eslint:check
- name: Quality check - type check
run: npm run tsc
- name: Quality check - cypress
run: npm run e2e:headless
- name: Build check
run: npm run build