Skip to content

Commit

Permalink
remove sentry integration
Browse files Browse the repository at this point in the history
  • Loading branch information
vorant94 committed Oct 15, 2024
1 parent 16e9aee commit 1289f2f
Show file tree
Hide file tree
Showing 6 changed files with 125 additions and 1,922 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
push:
branches:
- 'master'
tags:
- 'v*.*.*'
paths-ignore:
- 'docs/**'
pull_request:
Expand Down Expand Up @@ -116,7 +114,15 @@ jobs:
- name: Build App Bundle
run: npm run build

- name: Cache App Bundle
id: cache-bundle
uses: actions/cache@v4
with:
path: dist
key: ${{ runner.os }}-${{steps.setup.outputs.node-version}}-bundle-${{hashFiles('dist/**')}}

- name: Upload App Bundle
if: steps.cache-bundle.outputs.cache-hit != 'true'
uses: actions/upload-artifact@v4
with:
name: bundle
Expand Down Expand Up @@ -154,7 +160,10 @@ jobs:
- ts
- are-translations-sorted
- e2e
if: startsWith(github.ref, 'refs/tags/v')
if: |
github.event_name == 'push' &&
github.ref == 'refs/heads/master' &&
needs.build.outputs.bundle-cache-hit != 'true'
concurrency:
group: deploy
cancel-in-progress: false
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ install dependencies
```bash
npm i
npm run e2e:setup
npm run sentry:setup
```

## Push Changes
Expand Down
Loading

0 comments on commit 1289f2f

Please sign in to comment.