Skip to content

Bump axios and pm2 in /traffic_portal/app/src #1255

Bump axios and pm2 in /traffic_portal/app/src

Bump axios and pm2 in /traffic_portal/app/src #1255

Workflow file for this run

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Traffic Monitor Unit Tests
env:
# alpine:3.13
ALPINE_VERSION: sha256:08d6ca16c60fe7490c03d10dc339d9fd8ea67c6466dea8d558526b1330a85930
on:
push:
paths:
- .github/actions/go-test/**
- .github/workflows/tm.unit.tests.yml
- go.mod
- go.sum
- GO_VERSION
- '**.go'
- '!**_test.go'
- 'traffic_monitor/**_test.go'
- vendor/modules.txt
pull_request:
paths:
- .github/actions/go-test/**
- .github/workflows/tm.unit.tests.yml
- go.mod
- go.sum
- GO_VERSION
- '**.go'
- '!**_test.go'
- 'traffic_monitor/**_test.go'
- vendor/modules.txt
types: [opened, reopened, ready_for_review, synchronize]
jobs:
traffic_monitor_unit_tests:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Cache Alpine Docker image
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/docker-images
key: docker-images/alpine@${{ env.ALPINE_VERSION }}.tar.gz
- name: Import cached Alpine Docker image
run: .github/actions/save-alpine-tar/entrypoint.sh load ${{ env.ALPINE_VERSION }}
- name: Run Traffic Monitor unit tests
uses: ./.github/actions/go-test
with:
dir: ./traffic_monitor/...
test_name: traffic_monitor
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: traffic_monitor-coverage.out
flags: traffic_monitor_unit,unit_tests
- name: Save Alpine Docker image
run: .github/actions/save-alpine-tar/entrypoint.sh save ${{ env.ALPINE_VERSION }}