Skip to content

Commit

Permalink
v6.5.2 (#705)
Browse files Browse the repository at this point in the history
* 6.5.3

* build: change package name back to api-console

* build: delete valkr.yaml and Jenkinsfile

* build: add deployment.yml & update README.md

* chore(deps): upgrade amf-helper-mixin

* 6.5.2

* build: change npm install to ci in GH action

* build: unify ubuntu and windows tests step

* build: fix os for test job

* build: remove test_win from needs

* build: clean up deployment.yml

* build: test_linunx -> tests

* build: add support branches, test job conditions

* build: testing

* build: ignore publish if pull request
  • Loading branch information
twoplustwoone authored Jul 26, 2021
1 parent 7d31621 commit a87c17d
Show file tree
Hide file tree
Showing 7 changed files with 99 additions and 70 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: Tests and publishing
env:
FORCE_COLOR: 1
on:
push:
branches:
- master
- main
- develop
- stage
- support/*
pull_request:
branches:
- master
- main
- stage
- support/*
jobs:
tests:
name: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- uses: microsoft/playwright-github-action@v1
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
tag:
name: "Publishing release"
if: github.event_name != 'pull_request'
needs:
- tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- name: Read version from package.json
uses: culshaw/read-package-node-version-actions@v1
id: package-node-version
- name: Changelog
uses: scottbrenner/generate-changelog-action@master
id: Changelog
- name: Github Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.package-node-version.outputs.version }}
release_name: v${{ steps.package-node-version.outputs.version }}
body: |
${{ steps.Changelog.outputs.changelog }}
draft: false
prerelease: false
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
44 changes: 0 additions & 44 deletions .github/workflows/tests.yml

This file was deleted.

1 change: 0 additions & 1 deletion Jenkinsfile

This file was deleted.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
MuleSoft's API Console is an enterprise grade API Documentation tool.
This is an open source version of the console used in Anypoint Platform.

[![Published on NPM](https://img.shields.io/npm/v/api-console.svg)](https://www.npmjs.com/package/api-console)

[![Tests and publishing](https://github.com/mulesoft/api-console/actions/workflows/deployment.yml/badge.svg)](https://github.com/mulesoft/api-console/actions/workflows/deployment.yml)

## Usage

For best developer experience use one of our tools to use the console in your project depending on your use case:
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mulesoft/api-console",
"name": "api-console",
"description": "The API Console to automatically generate API documentation from RAML and OAS files.",
"version": "0.0.0-valkyr",
"version": "6.5.2",
"license": "CPAL-1.0",
"main": "index.js",
"module": "index.js",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@advanced-rest-client/arc-icons": "^3.2.2",
"@advanced-rest-client/oauth-authorization": "^5.0.4",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@api-components/amf-helper-mixin": "^4.4.0",
"@api-components/amf-helper-mixin": "^4.4.1",
"@api-components/api-console-ext-comm": "^3.0.0",
"@api-components/api-documentation": "^6.0.3",
"@api-components/api-navigation": "^4.3.0",
Expand Down
14 changes: 0 additions & 14 deletions valkyr.yaml

This file was deleted.

0 comments on commit a87c17d

Please sign in to comment.