8000 Register Component into Software Catalog and set up TechDocs publishing (#150) · grafana/har-to-k6@f3ba37a · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Register Component into Software Catalog and set up TechDocs publishi… #243

Register Component into Software Catalog and set up TechDocs publishi…

Register Component into Software Catalog and set up TechDocs publishi… #243

Workflow file for this run

name: CI
on:
pull_request: {}
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint files
run: npm run lint
- name: Bundle
run: npm run bundle
- name: Test
run: npm test
- name: Build Docker Image
run: |
export tag=${GITHUB_REF/refs\/branches\/}
docker build . -t har-to-k6:tag
0