Skip to content

Added static analysis actions file #1

Added static analysis actions file

Added static analysis actions file #1

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive --production=false
- name: Run ESLint check
run: yarn lint:check
- name: Run Prettier check
run: yarn prettier:check