switch to just triggering specific integration test jobs

This commit is contained in:
Nick Fyson
2020-09-08 00:03:37 +01:00
parent 11ad8a7ea5
commit 150f771cbe
10 changed files with 517 additions and 425 deletions
+26
View File
@@ -0,0 +1,26 @@
name: "CodeQL runner"
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build runner
run: |
cd runner
npm install
npm run build-runner
- name: Upload with runner
run: |
runner/dist/codeql-runner-linux upload \
--sarif-file src/testdata/empty-sarif.sarif \
--repository $GITHUB_REPOSITORY \
--commit $GITHUB_SHA \
--ref $GITHUB_REF \
--github-url $GITHUB_SERVER_URL \
--github-auth ${{ github.token }}