This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
chore(deps): bump @sentry/profiling-node from 0.3.0 to 1.2.0 in /api #1594
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: CI Web | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'develop' | |
- 'main' | |
pull_request: | |
branches: | |
- 'develop' | |
- 'main' | |
- 'web/**' | |
jobs: | |
web-lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./web | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- name: "Generate Query Builder" | |
run: cd ../api_query && npm ci && npm run build && cd ../web | |
- name: "Install dependencies" | |
run: npm ci | |
- name: "Check for build errors" | |
run: npm run build | |
- name: "Check for linting and errors" | |
run: npm run test |