Skip to content

Bump vue from 2.7.14 to 3.0.0 in /webapp/frontend #569

Bump vue from 2.7.14 to 3.0.0 in /webapp/frontend

Bump vue from 2.7.14 to 3.0.0 in /webapp/frontend #569

Workflow file for this run

name: ci-build
on: [push]
jobs:
# run tests / lint / etc. before building container image?
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Build
env:
IMAGE_TAG: ${{ env.RELEASE_VERSION }}
run: |
docker build -t cogstacksystems/medcat-trainer:dev-latest webapp/.
- name: Run Django Tests
env:
IMAGE_TAG: ${{ env.RELEASE_VERSION }}
run: |
# run tests
docker run --rm cogstacksystems/medcat-trainer:dev-latest python manage.py test