Skip to content

fix: pipelines

fix: pipelines #2

Workflow file for this run

name: Lint
on:
workflow_call:
push:
branches:
- main
- develop
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
# Setup node
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
# Install biome
- name: Install Biome
run: yarn add --dev @biomejs/biome
# Run linter
- name: Lint
run: yarn lint