Skip to content

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
edisontim committed Aug 16, 2024
1 parent 9eba721 commit cfe1080
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/knip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ name: knip

on:
push:
branches:
- main
paths:
- "client/**"

branches:
- main
pull_request:
paths:
- "client/**"
types:
- opened

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ name: lint

on:
push:
branches:
- main
paths:
- "client/**"
branches:
- main

pull_request:
paths:
- "client/**"
types:
- opened

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ name: client

on:
push:
branches:
- main
paths:
- "client/**"
branches:
- main

pull_request:
paths:
- "client/**"
types:
- opened

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/test-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@ name: test-contracts

on:
push:
paths:
- 'contracts/**'
branches:
- main
paths:
- "contracts/**"

pull_request:
paths:
- "contracts/**"
- 'contracts/**'
types:
- opened

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
setup-environment:
Expand Down
2 changes: 1 addition & 1 deletion client/src/three/SceneManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class SceneManager {
this.transitionManager.fadeIn();
});
}
this.moveCameraForScene();
this.moveCameraForScene();
}

moveCameraForScene() {
Expand Down

0 comments on commit cfe1080

Please sign in to comment.