Skip to content

Commit

Permalink
ignore changes to web-ui (#916)
Browse files Browse the repository at this point in the history
* ignore changes to web-ui

* this PR should make web ui ci independent of golang ci
  • Loading branch information
faddat authored Dec 20, 2023
1 parent 7a9a58e commit 5f11665
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/buildweb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ on:
pull_request:
branches:
- main
paths:
- web-ui/**
push:
paths:
- web-ui/**

jobs:
deploy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: "go"
languages: "go, javascript, typescript"
queries: +security-and-quality,github/codeql/go/ql/src/experimental/InconsistentCode/DeferInLoop.ql@main,github/codeql/go/ql/src/experimental/Unsafe/WrongUsageOfUnsafe.ql@main,github/codeql/go/ql/src/experimental/CWE-369/DivideByZero.ql@main
packs: +crypto-com/cosmos-sdk-codeql
# If you wish to specify custom queries, you can do so here or in a config file.
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Docker
on:
push:
branches:
- "develop"
- "main"
paths-ignore:
- webui/**

jobs:
docker:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/golangci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
name: golangci-lint
on:
push:
paths-ignore:
- web-ui
branches:
- develop
- main
pull_request:
paths-ignore:
- web-ui
branches:
- develop
- main



permissions:
contents: read
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/interchaintest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ on:
branches:
- "main"
- "develop"
paths:
- "**.go"
- "go.sum"
paths-ignore:
- "webui/**"

env:
REGISTRY: quicksilverzone
Expand Down

0 comments on commit 5f11665

Please sign in to comment.