Skip to content

Commit

Permalink
chore(deps): cleaned up irrelevant dependencies in ui-markdown-editor
Browse files Browse the repository at this point in the history
Signed-off-by: Cronus1007 <[email protected]>
  • Loading branch information
Cronus1007 committed Apr 6, 2021
1 parent 90973d4 commit ec339bf
Show file tree
Hide file tree
Showing 56 changed files with 85,364 additions and 10,641 deletions.
98 changes: 98 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
name: Build

on:
push:
pull_request:
branches:
- master

jobs:
build:
name: Unit Tests

strategy:
matrix:
node-version:
# - 12.x
- 14.x
os:
- ubuntu-latest
# - windows-latest
# - macOS-latest

runs-on: ${{ matrix.os }}

steps:
- name: git checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- uses: actions/cache@v2
id: npm-and-build-cache
with:
path: |
~/.cache/Cypress
build
node_modules
key: ${{ runner.os }}-node_modules-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node_modules-build-
- run: npx lerna bootstrap && npx lerna run build
- run: npm run build --if-present
- run: npm test

- name: 'Storybook Tests - Chrome'
uses: cypress-io/github-action@v2
with:
install: false
start: npm run storybook:ci
wait-on: 'http://localhost:9009'
wait-on-timeout: 120
browser: chrome
record: true
parallel: true
group: 'Storybook - Chrome'
project: packages/storybook
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

publish:
needs:
- build

name: Publish to npm
if: ${{ success() && github.event_name == 'push' && github.repository_owner == 'accordproject' }}
runs-on: ubuntu-latest

outputs:
job-status: ${{ job.status }}

steps:
- name: git checkout
uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x

- name: Build
run: npx lerna bootstrap && npx lerna run build

- name: timestamp
id: timestamp
run: |
node ./scripts/timestamp.js
- name: build and publish
run: |
npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
npm version --no-git-tag-version --yes --exact ${{ steps.timestamp.outputs.stamp }}
npx lerna version --no-git-tag-version --yes --exact ${{ steps.timestamp.outputs.stamp }}
npx lerna exec --ignore storybook -- npm publish --access public --ignore-scripts --tag=unstable 2>&1
66 changes: 66 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Publish

on:
release:
types:
- released

jobs:
publish:
name: Publish to npm
if: ${{ github.repository_owner == 'accordproject' }}
runs-on: ubuntu-latest

steps:
- name: git checkout
uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x

- uses: actions/cache@v2
id: npm-and-build-cache
with:
path: |
~/.cache/Cypress
build
node_modules
key: ${{ runner.os }}-node_modules-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node_modules-build-
- run: npx lerna bootstrap && npx lerna run build
- run: npm run build --if-present

- name: tag
id: tag
run: |
node ./scripts/tag.js ${{ github.event.release.tag_name }}
- name: build and publish
run: |
npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
npm version --no-git-tag-version --yes --exact ${{ github.event.release.tag_name }}
npx lerna version --no-git-tag-version --yes --exact ${{ github.event.release.tag_name }}
npx lerna exec --ignore storybook -- npm publish --access public ${{ steps.tag.outputs.tag }} 2>&1
- name: Create PR to increment version
uses: peter-evans/create-pull-request@v3
with:
base: master
commit-message: 'chore(actions): publish ${{ github.event.release.tag_name }} to npm'
committer: GitHub <[email protected]>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: true
branch: ap-publish-${{ github.event.release.tag_name }}
delete-branch: true
title: 'chore(actions): publish ${{ github.event.release.tag_name }} to npm'
body: |
# Increment Versions
Update the package.json version numbers after publishing to NPM.
assignees: ${{ github.actor }}
reviewers: ${{ github.actor }}
draft: false
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
#
# Licensed 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.
#

# Logs
logs
*.log
Expand Down
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

56 changes: 0 additions & 56 deletions .travis/base.sh

This file was deleted.

15 changes: 0 additions & 15 deletions .travis/build.cfg

This file was deleted.

104 changes: 0 additions & 104 deletions .travis/deploy.sh

This file was deleted.

Loading

0 comments on commit ec339bf

Please sign in to comment.