Skip to content

ci: add pr skip github action #8

ci: add pr skip github action

ci: add pr skip github action #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: latest
- name: Install
run: pnpm install --no-frozen-lockfile
- name: Lint
run: pnpm run lint