Skip to content

upgrade keytar toolchain to modern Node versions, add support for packaging on arm #2

upgrade keytar toolchain to modern Node versions, add support for packaging on arm

upgrade keytar toolchain to modern Node versions, add support for packaging on arm #2

Workflow file for this run

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