Skip to content

🔨 removing comments from ALIAS array #31

🔨 removing comments from ALIAS array

🔨 removing comments from ALIAS array #31

Workflow file for this run

name: Node CI
on:
push:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run lint command
run: npm run lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run build command
run: npm run build