Fixed query function bug #106
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: [push, workflow_dispatch] | |
jobs: | |
lint-matscommon: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '14' # This needs to match the version used by our Meteor release | |
- name: Install linters | |
run: npm ci | |
- name: Lint MATScommon | |
run: npm run lint |