-
Notifications
You must be signed in to change notification settings - Fork 66
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 #1388 from nextcloud/feat/vue-app
Make the app itself using Vue to fix accessibility
- Loading branch information
Showing
120 changed files
with
18,593 additions
and
12,596 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"extends": [ | ||
"@nextcloud/eslint-config/typescript" | ||
], | ||
"rules": { | ||
// Allow shallow import of @vue/test-utils in order to be able to use it in | ||
// the src folder | ||
"n/no-unpublished-import": ["error", { | ||
"allowModules": ["@vue/test-utils", "@testing-library/vue", "regenerator-runtime"] | ||
}] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
name: Node tests | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- stable* | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: node-tests-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
changes: | ||
runs-on: ubuntu-latest | ||
|
||
outputs: | ||
src: ${{ steps.changes.outputs.src}} | ||
|
||
steps: | ||
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1 | ||
id: changes | ||
continue-on-error: true | ||
with: | ||
filters: | | ||
src: | ||
- '.github/workflows/**' | ||
- '__tests__/**' | ||
- '__mocks__/**' | ||
- 'src/**' | ||
- 'appinfo/info.xml' | ||
- 'package.json' | ||
- 'package-lock.json' | ||
- 'tsconfig.json' | ||
- '**.js' | ||
- '**.ts' | ||
- '**.vue' | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
needs: changes | ||
if: needs.changes.outputs.src != 'false' | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Read package.json node and npm engines version | ||
uses: skjnldsv/read-package-engines-version-actions@8205673bab74a63eb9b8093402fd9e0e018663a1 # v2.2 | ||
id: versions | ||
with: | ||
fallbackNode: '^20' | ||
fallbackNpm: '^9' | ||
|
||
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} | ||
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 | ||
with: | ||
node-version: ${{ steps.versions.outputs.nodeVersion }} | ||
|
||
- name: Set up npm ${{ steps.versions.outputs.npmVersion }} | ||
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}" | ||
|
||
- name: Install dependencies & build | ||
env: | ||
CYPRESS_INSTALL_BINARY: 0 | ||
run: | | ||
npm ci | ||
npm run build --if-present | ||
- name: Test | ||
run: npm run test --if-present | ||
|
||
- name: Test and process coverage | ||
run: npm run test:coverage --if-present | ||
|
||
- name: Collect coverage | ||
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 | ||
with: | ||
files: ./coverage/lcov.info | ||
|
||
summary: | ||
permissions: | ||
contents: none | ||
runs-on: ubuntu-latest | ||
needs: [changes, test] | ||
|
||
if: always() | ||
|
||
name: test-summary | ||
|
||
steps: | ||
- name: Summary status | ||
run: if ${{ needs.changes.outputs.src != 'false' && needs.test.result != 'success' }}; then exit 1; fi |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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,15 +1,18 @@ | ||
const axios = jest.createMockFromModule('@nextcloud/axios') | ||
import wsData from './activity_ws.json' | ||
|
||
const wsData = require('./activity_ws.json') | ||
|
||
axios.get = function(url) { | ||
return new Promise((resolve, reject) => { | ||
if (url === 'http://localhost/ocs/v2.php/apps/activity/api/v2/activity/filter') { | ||
resolve({ data: wsData }) | ||
} else { | ||
reject(new Error(`URL not defined ${url}`)) | ||
} | ||
}) | ||
const axios = { | ||
/** | ||
* @param {string} url URL to get | ||
*/ | ||
get(url) { | ||
return new Promise((resolve, reject) => { | ||
if (url.endsWith('/ocs/v2.php/apps/activity/api/v2/activity/filter')) { | ||
resolve({ data: wsData }) | ||
} else { | ||
reject(new Error(`URL not defined ${url}`)) | ||
} | ||
}) | ||
}, | ||
} | ||
|
||
export default axios |
Oops, something went wrong.