upgrade keytar toolchain to modern Node versions, add support for packaging on arm #2
Workflow file for this run
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: "Code Scanning" | |
| on: pull_request | |
| jobs: | |
| CodeQL: | |
| name: ${{ matrix.friendlyName }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-2019, macos-latest] | |
| include: | |
| - os: ubuntu-latest | |
| friendlyName: Ubuntu | |
| - os: windows-2019 | |
| friendlyName: Windows | |
| - os: macos-latest | |
| friendlyName: macOS | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| # Initializes the CodeQL tools for scanning. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v1 | |
| with: | |
| languages: javascript, cpp | |
| # Setup dependencies (and build native modules from source) | |
| - name: Install dependencies | |
| run: | | |
| npm install | |
| npm run build | |
| # Run code analysis | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v1 |