Add multiple accepted solutions per question and move oracle to data/… #33
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: Eslint CI | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install modules | |
| run: npm install | |
| - name: Run ESLint | |
| run: npx eslint --max-warnings 0 . |