Skip to content

Merge pull request #19 from vim-jp-radio/feature/18 #23

Merge pull request #19 from vim-jp-radio/feature/18

Merge pull request #19 from vim-jp-radio/feature/18 #23

Workflow file for this run

name: lint / check
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
jobs:
lint:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm lint
- name: Run check
run: pnpm check