Skip to content

Commit

Permalink
Merge branch 'master' into andrii/add-toggle-prioritise-by-tx-name
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Soldatenko authored Feb 27, 2023
2 parents 3ab1345 + 73dc982 commit b32acf6
Show file tree
Hide file tree
Showing 181 changed files with 3,384 additions and 2,318 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Dependency Review'
on:
pull_request:
branches: ['master']

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- name: Dependency Review
uses: actions/dependency-review-action@c090f4e553673e6e505ea70d6a95362ee12adb94 # v3.0.3
with:
# Possible values: "critical", "high", "moderate", "low"
fail-on-severity: high
25 changes: 1 addition & 24 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,29 +119,6 @@ jobs:
if: steps.dependencies.outcome == 'success'
run: yarn tsc -p config/tsconfig.ci.json

webpack:
if: github.ref == 'refs/heads/master' || needs.files-changed.outputs.frontend == 'true'
needs: files-changed
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0

- uses: getsentry/action-setup-volta@54775a59c41065f54ecc76d1dd5f2cdc7a1550cb # v1.1.0

- name: Install dependencies
run: yarn install --frozen-lockfile

- uses: getsentry/size-limit-action@7be9865310d295ad211da9a8464332288d60d837 # v5
env:
SENTRY_INSTRUMENTATION: 1
SENTRY_WEBPACK_WEBHOOK_SECRET: ${{ secrets.SENTRY_WEBPACK_WEBHOOK_SECRET }}
with:
main_branch: master
skip_step: install
build_script: build
windows_verbatim_arguments: false
github_token: ${{ secrets.GITHUB_TOKEN }}

frontend-browser-tests:
if: needs.files-changed.outputs.frontend == 'true'
needs: files-changed
Expand Down Expand Up @@ -249,7 +226,7 @@ jobs:
# It symbolizes that all required Frontend checks have succesfully passed (Or skipped)
# This check is the only required Github check
frontend-required-check:
needs: [typescript-and-lint, webpack, frontend-browser-tests]
needs: [typescript-and-lint, frontend-browser-tests]
name: Frontend
# This is necessary since a failed/skipped dependent job would cause this job to be skipped
if: always()
Expand Down
Loading

0 comments on commit b32acf6

Please sign in to comment.