Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
echo "C:\Users\runneradmin\scoop\shims" >> $Env:GITHUB_PATH

- name: Fetch code
uses: actions/checkout@v2
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 1

# Skip macOS & Windows, cache there is slower
- name: Restore node_modules cache for Linux
uses: actions/cache@v1
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
if: runner.os == 'Linux'
with:
path: ~/.npm
Expand All @@ -54,12 +54,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch code
uses: actions/checkout@v2
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 1

- name: Restore node_modules cache
uses: actions/cache@v1
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
1 change: 1 addition & 0 deletions lib/fixture.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export { FixtureResult, IFixtureResultOptions };
export interface IFixtureOptions {
readonly buildDir: string;
readonly clang?: string;
readonly wasm?: string;
readonly extra?: ReadonlyArray<string>;
readonly maxParallel?: number;
}
Expand Down
73 changes: 56 additions & 17 deletions lib/fixture.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/fixture.js.map

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

12 changes: 10 additions & 2 deletions lib/result.js

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

Loading