Skip to content

Commit

Permalink
Merge pull request mozilla#13828 from timvandermeij/github-advanced-s…
Browse files Browse the repository at this point in the history
…ecurity

Introduce the GitHub Advanced Security workflow
  • Loading branch information
timvandermeij authored Jul 31, 2021
2 parents 10a1db6 + 5a08d62 commit 3ec1bac
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
name: CI
on: [push, pull_request]
jobs:
build:
test:
name: Test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Checkout repository
uses: actions/checkout@v2

- name: Use Node.js 14 LTS
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm install -g gulp-cli
- run: npm install
- run: npm test

- name: Install Gulp
run: npm install -g gulp-cli

- name: Install other dependencies
run: npm install

- name: Run tests
run: npm test
32 changes: 32 additions & 0 deletions .github/workflows/github_advanced_security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: GitHub Advanced Security
on: [push, pull_request]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest

permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [javascript]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
queries: security-extended

- name: Autobuild CodeQL
uses: github/codeql-action/autobuild@v1

- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v1

0 comments on commit 3ec1bac

Please sign in to comment.