Skip to content

Adding the function to replace NovaVaultV1 adapters #51

Adding the function to replace NovaVaultV1 adapters

Adding the function to replace NovaVaultV1 adapters #51

Workflow file for this run

name: Code Format Check
on:
push:
branches:
- main
pull_request:
jobs:
prettier-check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '14' # You can specify any version of Node.js that matches your project requirements
- name: Cache Node.js modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Run Prettier check
run: npm run prettier:check