feat: add ZM_WEB_LOGIN_MESSAGE to show a notice on the login page #498
This file contains hidden or 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: CI ESLint | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: [ master ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| eslint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| submodules: recursive | |
| - name: Install ESLint | |
| run: npm install eslint@9 @eslint/eslintrc @eslint/js@"<10" globals eslint-config-google@0.14.0 eslint-plugin-html eslint-plugin-php-markup@6.0.0 | |
| - name: Run ESLint | |
| run: npx eslint . |