Skip to content

Bump peter-evans/create-pull-request from 5 to 6 #72

Bump peter-evans/create-pull-request from 5 to 6

Bump peter-evans/create-pull-request from 5 to 6 #72

Workflow file for this run

name: lint
on: [push, pull_request]
permissions:
contents: read
jobs:
deno-lint:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Verify formatting and lint the typescrip and markdown codes
run: make lint/deno
vim-lint:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.10'
- name: Install vint
run: pip install vim-vint
- name: Verify formatting and lint the vim code
run: make lint/vim