fix: zero the WDK seed buffer on dispose and re-init #143
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: build | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: Lint | |
| steps: | |
| - uses: tetherto/oss-actions/node-base@v1 | |
| - run: npm run lint | |
| test: | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| platform: linux | |
| runs-on: ${{ matrix.os }} | |
| name: Test / ${{ matrix.platform }} | |
| steps: | |
| - uses: tetherto/oss-actions/node-base@v1 | |
| - run: npm install -g bare | |
| - run: npm run gen:schema | |
| - run: npm test |