Skip to content

feat: refactor the code, improve usability and code structure #24

feat: refactor the code, improve usability and code structure

feat: refactor the code, improve usability and code structure #24

Workflow file for this run

name: Pull Request Validation
on:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint