Skip to content

ci: setup GitHub workflows and dependabot #2

ci: setup GitHub workflows and dependabot

ci: setup GitHub workflows and dependabot #2

Workflow file for this run

name: Lint
env:
FORCE_COLOR: 1
on:
push:
branches:
- master
tags:
- "*"
pull_request:
jobs:
install:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Lint
run: pnpm lint
- name: Run Prettier
run: pnpm prettier