Merge pull request #133 from MetaCell/feature/ILEX-95-2 #372
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: Run Unit Tests and Lint Files | |
| on: push | |
| jobs: | |
| unit_test-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: 18.19 | |
| - run: | | |
| yarn | |
| yarn run build | |
| yarn run lint |