Updated repo (#44) #12
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: Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies | |
run: npm i | |
- name: Run linter | |
run: npm run lint -- --formatter github | |
- name: Check EditorConfig configuration | |
run: test -f .editorconfig | |
- name: Check adherence to EditorConfig | |
uses: greut/eclint-action@v0 | |
with: | |
eclint_args: | | |
-exclude=css/* |