fix: don't crash on mmc boot partitions #19
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| name: tests | |
| strategy: | |
| matrix: | |
| node: [ 12, 13, 14, 15 ] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2-beta | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run tests | |
| run: sudo npm test | |
| linter: | |
| runs-on: ubuntu-latest | |
| name: linter | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2-beta | |
| with: | |
| node-version: '15' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Verify code with ESLint | |
| run: npm run eslint |