chore(deps): bump elliptic from 6.5.4 to 6.5.7 in /frontend/amundsen_application/static #1513
Workflow file for this run
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: frontend PR | |
on: | |
pull_request: | |
paths: | |
- "frontend/**" | |
- "common/**" | |
- "requirements*txt" | |
jobs: | |
test-unit-python: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ['3.8.x', '3.9.x', '3.10.x'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: make install_deps && pip3 uninstall -y amundsen-common && pip3 install -e ../common | |
working-directory: ./frontend | |
- name: Run python unit tests | |
run: make test | |
working-directory: ./frontend | |
test-unit-frontend: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [12.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install and Lint | |
working-directory: ./frontend/amundsen_application/static | |
run: | | |
npm install | |
npm install codecov -g | |
npm run lint | |
- name: Check and build | |
working-directory: ./frontend/amundsen_application/static | |
run: | | |
npm run betterer | |
npm run build --if-present | |
- name: Test | |
working-directory: ./frontend/amundsen_application/static | |
run: npm run test | |
env: | |
CI: true |