Skip to content

Commit

Permalink
--wip--
Browse files Browse the repository at this point in the history
  • Loading branch information
QZera committed Oct 13, 2024
1 parent 0416eb0 commit 0f0f38f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]

jobs:
audit:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/commit-linting.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Commit linting
on:
pull_request:
branches: [ main ]
# pull_request:
# branches: [ main ]

jobs:
lint-commit-messages:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/end-to-end-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ jobs:
- name: Install Dependencies
working-directory: ${{ github.workspace }}/radicle-vscode-extension
run: npx npm-run-all -l verify-deps:*
# - name: Compile
# working-directory: ${{ github.workspace }}/radicle-vscode-extension
# run: pnpm run pretest
- name: Build
working-directory: ${{ github.workspace }}/radicle-vscode-extension
run: pnpm run build
- name: Test E2E (Linux)
working-directory: ${{ github.workspace }}/radicle-vscode-extension
if: runner.os == 'Linux'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-linting.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: PR linting
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
# pull_request:
# types: ['opened', 'edited', 'reopened', 'synchronize']

jobs:
lint-pr-title:
Expand Down
2 changes: 1 addition & 1 deletion test/specs/test.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ describe('VS Code Extension Testing', () => {
expect(buttonTitles[2]).toBe('Announce')
})

it('should be able to open a patch\'s details', async () => {
it.skip('should be able to open a patch\'s details', async () => {
await patchesSection.expand()

const items = await patchesSection?.getVisibleItems() as TreeItem[]
Expand Down
2 changes: 1 addition & 1 deletion wdio.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const config: WebdriverIO.Config = {
'wdio:vscodeOptions': {
// points to directory where extension package.json is located
extensionPath: __dirname,
workspacePath: path.join(__dirname, '../radicle-repos/radicle-planning-boards'),
workspacePath: path.join(__dirname, 'a_blog'),
// optional VS Code settings
userSettings: {
'editor.fontSize': 14,
Expand Down

0 comments on commit 0f0f38f

Please sign in to comment.