Skip to content

Bump prettier from 2.8.8 to 3.4.2 #114

Bump prettier from 2.8.8 to 3.4.2

Bump prettier from 2.8.8 to 3.4.2 #114

Workflow file for this run

name: CI/CD
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
name: Linting Code Base
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: GitHub Actions Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies and packages
run: npm ci
- name: Build Project
run: npm run build --if-present
- name: Run ESlint for lint errors
run: npm run lint