mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
4bb15711fb
* Initial Pass at new configs * Improved Linting/Formatting * Update execute.ts * Update main.test.ts * Change typing * Update git.ts * Update worktree.ts * Update worktree.ts * Update worktree.ts * Maybe * Update execute.ts
32 lines
564 B
YAML
32 lines
564 B
YAML
name: 'CodeQL'
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
- 'dev-v*'
|
|
- 'releases/v*'
|
|
pull_request:
|
|
branches:
|
|
- dev
|
|
- 'dev-v*'
|
|
schedule:
|
|
- cron: '0 9 * * 4'
|
|
|
|
jobs:
|
|
analyse:
|
|
name: Analyse
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v1
|
|
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@v1
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v1
|