Skip to content

Commit 328490f

Browse files
authored
Merge pull request #846 from citation-file-format/845-fix-openssl-bug
2 parents 2f24604 + f047e28 commit 328490f

File tree

6 files changed

+12
-15
lines changed

6 files changed

+12
-15
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,12 @@ jobs:
1313
- uses: actions/checkout@v3
1414
with:
1515
ref: ${{ github.head_ref }}
16-
- name: Use Node.js 14
16+
- name: Use Node.js 18
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: '14'
19+
node-version: '18'
2020
cache: 'npm'
2121
- name: Run npm clean-install
2222
run: npm clean-install
2323
- name: Run build
2424
run: npm run build
25-
26-

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- uses: actions/checkout@v3
1515
with:
1616
ref: ${{ github.head_ref }}
17-
- name: Use Node.js 14
17+
- name: Use Node.js 18
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: '14'
20+
node-version: '18'
2121
cache: 'npm'
2222
- name: Run npm clean-install
2323
run: npm clean-install

.github/workflows/preview.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
- uses: actions/checkout@v3
1919
with:
2020
ref: ${{ github.head_ref }}
21-
- name: Use Node.js 14
21+
- name: Use Node.js 18
2222
uses: actions/setup-node@v3
2323
with:
24-
node-version: '14'
24+
node-version: '18'
2525
cache: 'npm'
2626
- name: Run npm clean-install
2727
run: npm clean-install
@@ -57,4 +57,3 @@ jobs:
5757
script: |
5858
const { issue: { number: issue_number }, repo: { owner, repo } } = context;
5959
github.issues.createComment({ issue_number, owner, repo, body: 'Once the build has completed, you can preview your PR at this URL: https://cffinit.netlify.app/PR${{ github.event.number }}/' });
60-

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
- uses: actions/checkout@v3
1313
with:
1414
ref: ${{ github.head_ref }}
15-
- name: Use Node.js 14
15+
- name: Use Node.js 18
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: '14'
18+
node-version: '18'
1919
cache: 'npm'
2020
- name: Run npm clean-install
2121
run: npm clean-install

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- uses: actions/checkout@v3
1515
with:
1616
ref: ${{ github.head_ref }}
17-
- name: Use Node.js 14
17+
- name: Use Node.js 18
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: '14'
20+
node-version: '18'
2121
cache: 'npm'
2222
- name: Run npm clean-install
2323
run: npm clean-install

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"author": "Netherlands eScience Center",
77
"private": true,
88
"scripts": {
9-
"dev": "quasar dev",
10-
"build": "quasar build",
9+
"dev": "export NODE_OPTIONS=--openssl-legacy-provider && quasar dev",
10+
"build": "export NODE_OPTIONS=--openssl-legacy-provider && quasar build",
1111
"lint": "eslint --ext .js,.ts,.vue --ignore-pattern node_modules ./",
1212
"lint-fix": "eslint --ext .js,.ts,.vue --ignore-pattern node_modules ./ --fix",
1313
"test:unit:ui": "majestic",

0 commit comments

Comments
 (0)