Skip to content

feat: Added Shortcut functionality #83

feat: Added Shortcut functionality

feat: Added Shortcut functionality #83

Workflow file for this run

name: Style
on:
pull_request:
branches:
- master
jobs:
format:
name: Format
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- name: Setup Node - ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Check Format
run: npx prettier --check .