10000 Update NPM packages (#75) · cclauss/setup-python@4ff1108 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4ff1108

Browse files
authored
Update NPM packages (actions#75)
* Update NPM packages * Format using prettier * Update node version in workflow * Add .gitattributes
1 parent a93e9d9 commit 4ff1108

File tree

6 files changed

+7795
-6362
lines changed

6 files changed

+7795
-6362
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
operating-system: [ubuntu-latest, windows-latest]
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@master
12+
uses: actions/checkout@v2
1313

14-
- name: Set Node.js 10.x
15-
uses: actions/setup-node@master
14+
- name: Set Node.js 12.x
15+
uses: actions/setup-node@v1
1616
with:
17-
node-version: 10.x
17+
node-version: 12.x
1818

1919
- name: npm install
2020
run: npm install

__tests__/finder.test.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,13 @@ import path = require('path');
55
const toolDir = path.join(
66
__dirname,
77
'runner',
8-
path.join(
9-
Math.random()
10-
.toString(36)
11-
.substring(7)
12-
),
8+
path.join(Math.random().toString(36).substring(7)),
139
'tools'
1410
);
1511
const tempDir = path.join(
1612
__dirname,
1713
'runner',
18-
path.join(
19-
Math.random()
20-
.toString(36)
21-
.substring(7)
22-
),
14+
path.join(Math.random().toString(36).substring(7)),
2315
'temp'
2416
);
2517

0 commit comments

Comments
 (0)
0