Update karma.conf.js #65
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 Workflow | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Chrome (Linux) | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y chromium-chromedriver | |
- name: Set Docker image name | |
id: docker_image_name | |
run: echo "migupele/java_school_online_store_frontend" | |
- uses: actions/cache@v3 | |
env: | |
cache-name: ${{ runner.os }}-build-${{ github.job }} | |
with: | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Build Docker image | |
run: docker build . --file Dockerfile | |
- uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v1 | |
with: | |
images: migupele/java_school_online_store_frontend | |
- uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: npm install and npm run CI commands | |
run: | | |
npm i | |
npm run test | |
npm run build |