Update signer deps #2974
Workflow file for this run
This file contains 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: Compile and run unit tests | |
on: | |
push: | |
branches: | |
- 'beta.*' | |
- 'canary' | |
- 'develop' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12.1 | |
- name: Electronegativity | |
uses: doyensec/[email protected] | |
- name: Upload sarif | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ../electronegativity_results | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
- run: | | |
sudo apt update -y | |
sudo apt install -y libudev-dev | |
- run: npm run setup:ci | |
- run: npm run compile | |
- run: npm run test:unit |