Skip to content

chore: Update configuration files for consistency and formatting #26

chore: Update configuration files for consistency and formatting

chore: Update configuration files for consistency and formatting #26

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Build
run: npm run build