Skip to content

[MI-3828] Review fixes for Phase 2 UI given by QA #414

[MI-3828] Review fixes for Phase 2 UI given by QA

[MI-3828] Review fixes for Phase 2 UI given by QA #414

Workflow file for this run

# Continuous Integration Workflow to check pushes to master and pull requests:
# - code style guidelines are followed (make check-style)
# - tests pass (make test)
# - code builds (make dist)
name: CI
on:
pull_request:
push:
branches:
- main
jobs:
ci:
name: Check style; build; test
runs-on: ubuntu-latest
steps:
- name: Set up Go v1.20.x
uses: actions/setup-go@v4
with:
go-version: 1.20.x
- name: Set up Node.js v14.x
uses: actions/setup-node@v4
with:
node-version: 14.x
registry-url: https://npm.pkg.github.com/
- name: Install golangci
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.52.2
- uses: actions/checkout@v4
- name: Cache go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Cache node modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install webapp dependencies
run: make webapp/node_modules
env:
TERM: dumb
- name: check style
run: make check-style
env:
TERM: dumb
- name: run tests
run: make test
env:
TERM: dumb
- name: Build and bundle the plugin
id: build
run: |
make dist
echo ::set-output name=BUNDLE_NAME::$(cd dist; ls *.tar.gz)
env:
TERM: dumb
- name: Upload the built plugin as an artifact
uses: actions/upload-artifact@v3
with:
name: ${{ steps.build.outputs.BUNDLE_NAME }}
path: dist/${{ steps.build.outputs.BUNDLE_NAME }}