Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .github/workflows/develop_CD.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Deploy_To_Azure_Blobs_Dev

on:
workflow_dispatch:
push:
paths-ignore: # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
- "**/README.md" # don't run on README.md file updates anywhere in repo
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/develop_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"

- name: Cypress CI Run
uses: cypress-io/github-action@v6
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/main_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"

- name: Cypress CI Run
uses: cypress-io/github-action@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/iron
lts/krypton
40 changes: 22 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"type": "module",
"private": true,
"version": "2.9.2",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"start": "npm run dev",
"dev": "vite --mode development",
Expand Down
6 changes: 6 additions & 0 deletions src/components/layout/LayoutFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@
</p>
</div>
</div>
<div class="iati-footer-block__content">
<div>
<p>Please report bugs and request features using <a href="https://github.com/IATI/validator-web/issues">GitHub issues</a> or via <a href="https://iatistandard.org/en/guidance/get-support/">IATI Support</a>.
</p>
</div>
</div>
</div>
</div>
</div>
Expand Down
Loading