chore(deps): bump actions/setup-node from 3.6.0 to 4.0.0 #376
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: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
code-lint: | |
runs-on: "ubuntu-20.04" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3.4.0 | |
- name: Install luacheck | |
run: | | |
sudo apt install -y luarocks | |
sudo luarocks install luacheck > build.log 2>&1 || (cat build.log && exit 1) | |
- name: Setup Nodejs env | |
uses: actions/setup-node@v4.0.0 | |
with: | |
node-version: '12' | |
- name: Install eclint | |
run: | | |
sudo npm install -g eclint | |
- name: Script | |
run: | | |
make lint | |
misc-lint: | |
runs-on: "ubuntu-20.04" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3.4.0 | |
- name: Spell check | |
run: | | |
pip install codespell==2.1.0 | |
git grep --cached -l '' | xargs codespell --ignore-words=.github/workflows/ignore_words | |
- name: Merge conflict | |
run: | | |
grep "^<<<<<<< HEAD" $(git grep --cached -l '' | xargs) && exit 1 || true |