Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Add Windows builds on CI. (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
erossignon committed Mar 28, 2021
1 parent 11b93bf commit c9ad6ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false # prevent test to stop if one fails
matrix:
node-version: [10.x, 12.x, 14.x]
os: [ubuntu-latest] # Skip macos-latest, windows-latest for now
os: [ubuntu-latest, windows-latest] # Skip macos-latest

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion test/test-50-ast-parsing/main.js
Expand Up @@ -39,5 +39,5 @@ right = utils.spawn.sync('./' + path.basename(output), [], {
cwd: path.dirname(output),
});

assert.strictEqual(left, right);
assert.deepStrictEqual(left.split(/(\r|\n)+/), right.split(/(\r|\n)+/));
utils.vacuum.sync(output);

0 comments on commit c9ad6ff

Please sign in to comment.