Skip to content

feat: Initialize project with package.json, biome configuration, and … #1

feat: Initialize project with package.json, biome configuration, and …

feat: Initialize project with package.json, biome configuration, and … #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
biome:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install Dependencies
run: pnpm i --frozen-lockfile
- name: Run biome
run: pnpm run biome || exit 1