Skip to content

Commit

Permalink
workflows: fix broken CodeQL
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthvp committed Feb 13, 2021
1 parent 48ab4fe commit 432c793
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 58 deletions.
53 changes: 0 additions & 53 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

17 changes: 15 additions & 2 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
# Workflow for linting, building, testing, CodeQL analysis, and reporting of code coverage

name: Node.js CI

Expand Down Expand Up @@ -40,6 +39,20 @@ jobs:
env:
AUTH_JSON: ${{secrets.AUTH_JSON}}

code_ql:
runs-on: ubuntu-latest
name: CodeQL
needs: build
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: javascript
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

test:
runs-on: ubuntu-latest
strategy:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: NPM publish

on:
Expand Down

0 comments on commit 432c793

Please sign in to comment.