New diagram dialog #37
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: Check the code style of the Quantum Workflow Modeler | |
on: | |
pull_request: | |
types: [ opened, synchronize ] | |
push: | |
branches: | |
- 'master' | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Node.js dependencies and run linters | |
run: | | |
npm ci | |
npm run lint | |
working-directory: ./components/bpmn-q |