Skip to content

build(deps-dev): bump @biomejs/biome from 2.4.4 to 2.4.10 #49

build(deps-dev): bump @biomejs/biome from 2.4.4 to 2.4.10

build(deps-dev): bump @biomejs/biome from 2.4.4 to 2.4.10 #49

Workflow file for this run

on: ["pull_request"]
name: Build and Test PR
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies 📦
run: npm ci
- name: Lint 🧹
run: |
npm run lint
npm run ts-check
- name: Build 🔧
run: npm run build
- name: Test 🧪
run: npm run coverage