Update purifier-card
#1267
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: | |
pull_request: {} | |
push: | |
branches: | |
- 'master' | |
jobs: | |
eslint: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v3' | |
- uses: 'actions/setup-node@v3' | |
with: | |
node-version: 'latest' | |
- run: 'npm install eslint eslint-config-airbnb-base eslint-plugin-eslint-comments eslint-plugin-import' | |
- run: 'npx eslint zigbee2mqtt/' | |
yamllint: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v3' | |
- uses: 'ibiqlik/action-yamllint@v3' |