Skip to content

Commit

Permalink
Showing 5 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
@@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v1
- 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.
4 changes: 0 additions & 4 deletions README.md
@@ -26,10 +26,6 @@ on:

jobs:
CodeQL-Build:

strategy:
fail-fast: false

# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
runs-on: ubuntu-latest

2 changes: 1 addition & 1 deletion lib/util.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/util.test.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/util.test.ts
@@ -58,7 +58,7 @@ test('getThreadsFlag() should return the correct --threads flag', t => {
}
});

test('getThreadsFlag() throws if the ram input is < 0 or NaN', t => {
test('getThreadsFlag() throws if the threads input is not an integer', t => {
process.env['INPUT_THREADS'] = "hello!";
t.throws(util.getThreadsFlag);
});

0 comments on commit 260a93f

Please sign in to comment.