Skip to content

Commit

Permalink
[APIC-715] 6.0.6 (#716)
Browse files Browse the repository at this point in the history
* 6.0.6

* build: add CODEOWNERS

* build: add deployment.yml

* build: remove, karma and travis

* build: migrate to web-test-runner

* test: add timeout for a unit test
  • Loading branch information
twoplustwoone authored Sep 17, 2021
1 parent 3e90a1d commit 219f830
Show file tree
Hide file tree
Showing 9 changed files with 2,600 additions and 4,856 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @mulesoft/team-api-console
81 changes: 81 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
name: Tests and publishing
env:
FORCE_COLOR: 1
on:
push:
branches:
- master
- main
- support/*
pull_request:
branches:
- master
- main
- 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 }}
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

109 changes: 0 additions & 109 deletions karma.conf.js

This file was deleted.

32 changes: 0 additions & 32 deletions karma.sl.config.js

This file was deleted.

Loading

0 comments on commit 219f830

Please sign in to comment.