Skip to content

feat: Redesigning the flow of the user journey in domain and edge app #83

feat: Redesigning the flow of the user journey in domain and edge app

feat: Redesigning the flow of the user journey in domain and edge app #83

Workflow file for this run

name: Run Linters And Checking Build Integrity
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- dev
env:
HUSKY: 0
jobs:
eslint:
runs-on: ubuntu-latest
container:
image: node:18-alpine3.18
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install SO Dependencies
run: apk add --no-cache curl bash git
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn ci
- name: Checking Build Integrity
run: |
echo "checking build integrity"
yarn build
rm -rf dist
rm -rf coverage
- name: Run ESLint
run: yarn lint
- name: Run Prettier Formatting
run: yarn prettier --check src/