Skip to content

Commit

Permalink
Merge pull request #76 from actions/master
Browse files Browse the repository at this point in the history
Update releases branch with latest changes
  • Loading branch information
konradpabjan authored Mar 26, 2020
2 parents 53d19fa + 4ff1108 commit 614aa4a
Show file tree
Hide file tree
Showing 6 changed files with 7,798 additions and 6,360 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
operating-system: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v2

- name: Set Node.js 10.x
uses: actions/setup-node@master
- name: Set Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: 12.x

- name: npm install
run: npm install
Expand Down
12 changes: 2 additions & 10 deletions __tests__/finder.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,13 @@ import path = require('path');
const toolDir = path.join(
__dirname,
'runner',
path.join(
Math.random()
.toString(36)
.substring(7)
),
path.join(Math.random().toString(36).substring(7)),
'tools'
);
const tempDir = path.join(
__dirname,
'runner',
path.join(
Math.random()
.toString(36)
.substring(7)
),
path.join(Math.random().toString(36).substring(7)),
'temp'
);

Expand Down
Loading

0 comments on commit 614aa4a

Please sign in to comment.