Skip to content

Bump textlint-rule-preset-ja-spacing from 2.3.1 to 2.4.3 #4

Bump textlint-rule-preset-ja-spacing from 2.3.1 to 2.4.3

Bump textlint-rule-preset-ja-spacing from 2.3.1 to 2.4.3 #4

Workflow file for this run

name: lint
on:
push:
pull_request:
branches: ['main']
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python cache
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Node.js cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
run: |
make install
- name: Lint
run: make lint