Skip to content

Commit 8e8f386

Browse files
authored
Merge pull request #88 from codepunkt/dspace-group-main
2 parents 5572c3b + 357754f commit 8e8f386

File tree

11 files changed

+5347
-3579
lines changed

11 files changed

+5347
-3579
lines changed

.github/workflows/test.yml

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -12,39 +12,39 @@ on:
1212
jobs:
1313
test:
1414
name: Execute Tests
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-22.04
1616
strategy:
1717
matrix:
18-
node-version: [16.x, 18.x]
18+
node-version: [18.x, 20.x]
1919
steps:
20-
- uses: actions/checkout@v2
21-
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v1
23-
with:
24-
node-version: ${{ matrix.node-version }}
25-
- name: Install dependencies
26-
run: |
27-
npm ci --no-audit --no-fund
28-
cd test && npm ci --no-audit --no-fund
29-
- name: Run tests
30-
run: npm run test
31-
env:
32-
CI: true
33-
- name: Create Coverage summary file
34-
uses: irongut/[email protected]
35-
with:
36-
filename: ./coverage/cobertura-coverage.xml
37-
format: markdown
38-
output: both
39-
- name: Write PR meta to file
40-
run: |
41-
echo "PR_HEADSHA=${{ github.event.pull_request.head.sha }}" >> pr.env
42-
echo "PR_NUMBER=${{ github.event.pull_request.number }}" >> pr.env
43-
- name: Upload PR meta and Coverage summery artifacts
44-
uses: actions/upload-artifact@v2
45-
with:
46-
name: pr-comment-meta
47-
path: |
48-
pr.env
49-
code-coverage-results.md
50-
retention-days: 1
20+
- uses: actions/checkout@v2
21+
- name: Use Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v1
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
- name: Install dependencies
26+
run: |
27+
npm ci --no-audit --no-fund
28+
cd test && npm ci --no-audit --no-fund
29+
- name: Run tests
30+
run: npm run test
31+
env:
32+
CI: true
33+
- name: Create Coverage summary file
34+
uses: irongut/[email protected]
35+
with:
36+
filename: ./coverage/cobertura-coverage.xml
37+
format: markdown
38+
output: both
39+
- name: Write PR meta to file
40+
run: |
41+
echo "PR_HEADSHA=${{ github.event.pull_request.head.sha }}" >> pr.env
42+
echo "PR_NUMBER=${{ github.event.pull_request.number }}" >> pr.env
43+
- name: Upload PR meta and Coverage summery artifacts
44+
uses: actions/upload-artifact@v2
45+
with:
46+
name: pr-comment-meta
47+
path: |
48+
pr.env
49+
code-coverage-results.md
50+
retention-days: 1

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 3.0.0
2+
3+
- Support for node 16 removed
4+
- Update dependencies
5+
16
# 2.0.1
27

38
- Publish only required files to NPM

ava.config.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ export default {
44
failWithoutAssertions: false,
55
verbose: true,
66
timeout: '2m',
7-
nodeArguments: [
8-
'--no-warnings',
9-
'--loader=@esbuild-kit/esm-loader',
10-
'--experimental-specifier-resolution=node',
11-
],
127
extensions: {
138
ts: 'module',
149
},

0 commit comments

Comments
 (0)