Skip to content

Commit 277bcd8

Browse files
Merge pull request #4 from netresearch/development
Fix NodeJS version in workflows
2 parents 87740f8 + 3667969 commit 277bcd8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- uses: actions/setup-node@v1
1818
with:
19-
node-version: '14.16.0'
19+
node-version: '12.x'
2020

2121
- name: ⚡ Install dependencies
2222
run: yarn install --frozen-lockfile
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v2
3232
- uses: actions/setup-node@v1
3333
with:
34-
node-version: '14.16.0'
34+
node-version: '12.x'
3535

3636
- name: ⚡ Install dependencies
3737
run: yarn install --frozen-lockfile

.github/workflows/release.when-pushed.yml

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

1717
- uses: actions/setup-node@v1
1818
with:
19-
node-version: '14.16.0'
19+
node-version: '12.x'
2020
registry-url: 'https://registry.npmjs.org'
2121
scope: '@netresearch'
2222

.github/workflows/release.when-tagged.yml

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

1818
- uses: actions/setup-node@v1
1919
with:
20-
node-version: '14.16.0'
20+
node-version: '12.x'
2121
registry-url: 'https://registry.npmjs.org'
2222
scope: '@netresearch'
2323

0 commit comments

Comments
 (0)