Skip to content

build(deps-dev): bump @biomejs/biome from 1.5.3 to 1.6.1 #280

build(deps-dev): bump @biomejs/biome from 1.5.3 to 1.6.1

build(deps-dev): bump @biomejs/biome from 1.5.3 to 1.6.1 #280

Workflow file for this run

name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- if: matrix.os != 'windows-latest'
name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build