Skip to content

ci: add github workflow #1

ci: add github workflow

ci: add github workflow #1

Workflow file for this run

name: autofix.ci
on:
push:
branches:
- main
pull_request:
branches:
- main
merge_group: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set node
uses: actions/setup-node@v6
with:
registry-url: https://registry.npmjs.org/
node-version: lts/*
- name: Install
run: pnpm i
- name: Lint
run: pnpm lint --fix
- uses: autofix-ci/action@v1.3