Skip to content

refactor: move to solvro config #1

refactor: move to solvro config

refactor: move to solvro config #1

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Format check
run: npm run format:check
if: always()
- name: Build
run: npm run build
if: always()