Skip to content

Commit c727fdb

Browse files
Merge pull request #10 from sandstreamdev/fix_set_node_runtime_version
fix: set node runtime version for CI
2 parents a1bd3f9 + 3419462 commit c727fdb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [8.x, 10.x, 12.x]
12+
node-version: [12.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sandstreamdev/std",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "",
55
"type": "module",
66
"module": "index.js",

regenerate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const ignoredFiles = [
2525
"rollup.config.js"
2626
];
2727

28-
const ignoredDirectories = [".git", "node_modules"];
28+
const ignoredDirectories = [".git", ".github", "node_modules"];
2929

3030
const identifier = name => mapping[name] || name;
3131

0 commit comments

Comments
 (0)