Skip to content

Configure GitHub actions #8

Configure GitHub actions

Configure GitHub actions #8

Workflow file for this run

name: Lint
env:
FORCE_COLOR: 1
on:
push:
branches:
- master
tags:
- "*"
pull_request:
jobs:
lint:
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