chore(deps): bump actions/checkout from 2.4.0 to 3.6.0 #74
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ❄️ Lint | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
misc: | |
name: misc checker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code. | |
uses: actions/checkout@v3.6.0 | |
- name: spell check | |
run: | | |
pip install codespell==2.1.0 | |
git grep --cached -l '' | xargs codespell --ignore-words=.ignore_words | |
- name: Merge conflict | |
run: | | |
bash ./utils/check-merge-conflict.sh | |
- name: Plugin Code | |
run: | | |
bash ./utils/check-plugins-code.sh | |
ci-eclint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3.6.0 | |
- name: Setup Nodejs env | |
uses: actions/setup-node@v3.4.1 | |
with: | |
node-version: '12' | |
- name: Install eclint | |
run: | | |
sudo npm install -g eclint | |
- name: Run eclint | |
run: | | |
eclint check |