Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add integration test for retrieval of remote config
Sam Partington committed Jun 30, 2020
1 parent ca76a2c commit 4b37db7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/integration-testing.yml
@@ -124,3 +124,24 @@ jobs:
sarif_file: rubocop.sarif
env:
TEST_MODE: true

retrieval-of-remote-config:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
# Must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head of the pull request.
fetch-depth: 2

# If this run was triggered by a pull request event then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}

- uses: ./init
with:
languages: javascript
config-file: github/codeql-action/.github/codeql/codeql-config.yml@main
- uses: ./analyze

0 comments on commit 4b37db7

Please sign in to comment.