-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from codepunkt/dspace-group-main
- Loading branch information
Showing
11 changed files
with
5,347 additions
and
3,579 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,39 +12,39 @@ on: | |
jobs: | ||
test: | ||
name: Execute Tests | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
matrix: | ||
node-version: [16.x, 18.x] | ||
node-version: [18.x, 20.x] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install dependencies | ||
run: | | ||
npm ci --no-audit --no-fund | ||
cd test && npm ci --no-audit --no-fund | ||
- name: Run tests | ||
run: npm run test | ||
env: | ||
CI: true | ||
- name: Create Coverage summary file | ||
uses: irongut/[email protected] | ||
with: | ||
filename: ./coverage/cobertura-coverage.xml | ||
format: markdown | ||
output: both | ||
- name: Write PR meta to file | ||
run: | | ||
echo "PR_HEADSHA=${{ github.event.pull_request.head.sha }}" >> pr.env | ||
echo "PR_NUMBER=${{ github.event.pull_request.number }}" >> pr.env | ||
- name: Upload PR meta and Coverage summery artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: pr-comment-meta | ||
path: | | ||
pr.env | ||
code-coverage-results.md | ||
retention-days: 1 | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install dependencies | ||
run: | | ||
npm ci --no-audit --no-fund | ||
cd test && npm ci --no-audit --no-fund | ||
- name: Run tests | ||
run: npm run test | ||
env: | ||
CI: true | ||
- name: Create Coverage summary file | ||
uses: irongut/[email protected] | ||
with: | ||
filename: ./coverage/cobertura-coverage.xml | ||
format: markdown | ||
output: both | ||
- name: Write PR meta to file | ||
run: | | ||
echo "PR_HEADSHA=${{ github.event.pull_request.head.sha }}" >> pr.env | ||
echo "PR_NUMBER=${{ github.event.pull_request.number }}" >> pr.env | ||
- name: Upload PR meta and Coverage summery artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: pr-comment-meta | ||
path: | | ||
pr.env | ||
code-coverage-results.md | ||
retention-days: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# 3.0.0 | ||
|
||
- Support for node 16 removed | ||
- Update dependencies | ||
|
||
# 2.0.1 | ||
|
||
- Publish only required files to NPM | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.