fix(deps): update dependency sentry/sentry to v4 #422
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: pull_request | |
jobs: | |
build-js: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 16, 18 ] | |
name: Build front-end with Node ${{ matrix.node-version }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
env: | |
CI: true | |
summary: | |
runs-on: ubuntu-latest | |
needs: | |
- build-js | |
if: always() | |
name: Build summary | |
steps: | |
- name: Static analysis status | |
run: if ${{ needs.build-js.result != 'success' && needs.build-js.result != 'skipped' }}; then exit 1; fi |