Skip to content

Merge pull request #181 from makeswift/miguel/lint #16

Merge pull request #181 from makeswift/miguel/lint

Merge pull request #181 from makeswift/miguel/lint #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
jobs:
ci:
name: CI
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '8.15.6'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
if: false
run: pnpm lint
- name: Format
run: pnpm format-check