Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
1ab2088
Improve error handling for adding contacts by making error messages u…
brianscherner Aug 20, 2025
990aab1
Improve error handling for readability and add logging statement.
brianscherner Aug 20, 2025
47aa3c5
WIP commit for creating a QR code to share webId with others.
brianscherner Aug 22, 2025
973dec9
Display QR code in a modal.
brianscherner Aug 22, 2025
6e3dd19
Make 'close' button width responsive.
brianscherner Aug 22, 2025
cb073d4
Change location of QR code feature and style as button.
brianscherner Aug 22, 2025
6641050
Update build artifacts.
brianscherner Aug 22, 2025
f2ee7f6
Update upload-pages-artifact to v2.
brianscherner Aug 22, 2025
1645fd8
Patching NPM packages
leekahung Aug 24, 2025
950b0fe
Updating ci.yml
leekahung Aug 24, 2025
b33c342
Revert commits made to ci.yml.
brianscherner Aug 26, 2025
60ba178
Update component documentation.
brianscherner Aug 26, 2025
61dd27c
Merge pull request #706 from codeforpdx/Issue-697-Fix-Exception-Message
brianscherner Aug 26, 2025
50a5691
Merge branch 'Development' into 691-qr-code-enhancement
brianscherner Aug 26, 2025
fcddf26
Merge branch 'Development' into patch-npm-packages
leekahung Aug 26, 2025
ec9c174
Merge pull request #708 from codeforpdx/patch-npm-packages
leekahung Aug 26, 2025
cdcbd42
Merge branch 'Development' into 691-qr-code-enhancement
leekahung Aug 26, 2025
83ce7e8
Merge pull request #707 from codeforpdx/691-qr-code-enhancement
brianscherner Aug 26, 2025
72edf56
Update PASS version; patch additional npm packages
leekahung Aug 27, 2025
3019198
Merge branch 'Master' into Development
leekahung Aug 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
contents: read
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
Expand All @@ -32,7 +32,7 @@ jobs:
npm run build

- name: Upload frontend assets
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v4
with:
path: './dist'

Expand All @@ -41,11 +41,11 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
steps:
- name: Code Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
Expand All @@ -61,11 +61,11 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
steps:
- name: Code Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
Expand Down
Loading