Fix/php83 compatibility #31
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: JS Code Linting | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
lint-js: | |
name: Lint JS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the git repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
- name: npm install | |
run: npm install | |
- name: Lint JS | |
run: npm run lint:js |