Merge remote-tracking branch 'origin/main' into feature-shell-sdk-sup… #809
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: Audit | |
| on: [push] | |
| jobs: | |
| audit: | |
| name: Audit Project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Lib - Install | |
| run: npm ci | |
| working-directory: ./keeperapi | |
| env: | |
| NPM_TOKEN: "" | |
| - name: Lib - Check Formatting | |
| run: npm run format:check | |
| working-directory: ./keeperapi | |
| - name: Lib - Build | |
| run: npm run build | |
| working-directory: ./keeperapi | |
| env: | |
| NPM_TOKEN: "" | |
| - name: Lib - Check Types | |
| run: npm run types:ci | |
| working-directory: ./keeperapi | |
| env: | |
| NPM_TOKEN: "" | |
| - name: Lib - Run Unit Tests | |
| run: npm run test | |
| working-directory: ./keeperapi | |
| - name: SDK - Install | |
| run: npm ci | |
| working-directory: ./KeeperSdk | |
| env: | |
| NPM_TOKEN: "" | |
| - name: SDK - Check Formatting | |
| run: npm run format:check | |
| working-directory: ./KeeperSdk | |
| - name: Examples (node) - Installation | |
| run: npm run link-local | |
| working-directory: ./examples/print-vault-node | |
| - name: Examples (node) - Check Types | |
| run: npm run types:ci | |
| working-directory: ./examples/print-vault-node | |
| - name: Examples (browser) - Installation | |
| run: npm run link-local | |
| working-directory: ./examples/print-vault-browser | |
| - name: Examples (browser) - Check Types | |
| run: npm run types:ci | |
| working-directory: ./examples/print-vault-browser |