Skip to content

fix: pipeline

fix: pipeline #63

Workflow file for this run

name: DEV pipeline
on:
push:
branches-ignore:
- main
jobs:
check:
name: Source Revision
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 20.x, 18.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Format Check
run: npm run format:check
- name: Run Lint Check
run: npm run lint:check
- name: Build
run: npm run build