Skip to content

Commit

Permalink
Fixes (#5)
Browse files Browse the repository at this point in the history
* No need to test under Windows

* Fix linter issues
  • Loading branch information
novemberborn committed Dec 22, 2020
1 parent 3341df8 commit 4150ce8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Expand Up @@ -7,12 +7,11 @@ on:
jobs:
nodejs:
name: Node.js
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [^10, ^12, ^14]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand Down
2 changes: 1 addition & 1 deletion scripts/check.js
Expand Up @@ -9,7 +9,7 @@ const path = require('path');
ctrlcExit();

const exec = async cmd => {
const {stdout} = await execa.command(cmd, {reject: false, shell: true})
const {stdout} = await execa.command(cmd, {reject: false, shell: true});
return stdout;
};

Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Expand Up @@ -4,7 +4,7 @@ const test = require('ava');
const path = require('path');

const exec = async cmd => {
const {stdout} = await execa.command(cmd, {reject: false, shell: true})
const {stdout} = await execa.command(cmd, {reject: false, shell: true});
return stdout;
};

Expand Down

0 comments on commit 4150ce8

Please sign in to comment.