Skip to content

Commit

Permalink
fix: use base-config-directive
Browse files Browse the repository at this point in the history
  • Loading branch information
test123456789012345 committed Jul 25, 2020
1 parent 313012d commit ac00253
Show file tree
Hide file tree
Showing 5 changed files with 1,637 additions and 1,161 deletions.
99 changes: 51 additions & 48 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,52 +1,14 @@
name: build
on:
push:
branches:
- "**"
jobs:
cancel-existing:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@v0.2.2
env:
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test:
needs: cancel-existing
strategy:
matrix:
os:
- macos-latest
- windows-latest
- ubuntu-latest
node:
- 10
- 12
exclude:
- os: macos-latest
node: 10
- os: windows-latest
node: 10
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: git config --global user.email "actions@github.com"
- run: git config --global user.name "GitHub Actions"
- run: yarn --frozen-lockfile
- run: yarn test
- name: Coveralls
if: matrix.os == 'ubuntu-latest' && matrix.node == 12
run: yarn dw-ci coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github
COVERALLS_GIT_COMMIT: ${{ github.sha }}
COVERALLS_GIT_BRANCH: ${{ github.ref }}
uses: rokroskar/workflow-run-cleanup-action@v0.2.2
release:
needs: test
if: github.ref == 'refs/heads/master'
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -56,14 +18,55 @@ jobs:
- run: git config --global user.email "actions@github.com"
- run: git config --global user.name "GitHub Actions"
- run: yarn --frozen-lockfile
- run: yarn clean
- run: yarn lint
- name: Push changed files
run: yarn dw-ci push-changed-files
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- env:
GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }}
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Push changed files
run: yarn dw-ci push-changed-files
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
name: Release
run: yarn semantic-release
test:
needs: cancel-existing
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: git config --global user.email "actions@github.com"
- run: git config --global user.name "GitHub Actions"
- run: yarn --frozen-lockfile
- run: yarn clean
- run: yarn test
- env:
COVERALLS_GIT_BRANCH: ${{ github.ref }}
COVERALLS_GIT_COMMIT: ${{ github.sha }}
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github
if: matrix.os == 'ubuntu-latest' && matrix.node == 12
name: Coveralls
run: yarn dw-ci coveralls
strategy:
matrix:
exclude:
- node: 10
os: macos-latest
- node: 10
os: windows-latest
node:
- 10
- 12
os:
- macos-latest
- windows-latest
- ubuntu-latest
name: build
on:
push:
branches:
- "**"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
.DS_Store
.browserslistrc
/.babelrc.json
/.commitlintrc.json
/.cz.json
/.editorconfig
/.env.json
/.eslintrc.json
/.huskyrc.json
/.nyc_output
/.releaserc.json
/.test.env.json
Expand Down
8 changes: 5 additions & 3 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"extends": [
":semanticCommits"
],
"labels": [
"maintenance"
],
"packageRules": [
{
"packagePatterns": [
Expand All @@ -20,7 +23,6 @@
}
],
"lockFileMaintenance": {
"enabled": true,
"schedule": "at any time"
"enabled": true
}
}
}
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
"repository": "dword-design/vue-focus-on-mouseup",
"license": "MIT",
"author": "Sebastian Landwehr <info@dword-design.de>",
"main": "dist/index.js",
"main": "dist/index.ssr.js",
"unpkg": "dist/index.min.js",
"module": "dist/index.esm.js",
"browser": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"clean": "base clean",
"commit": "base commit",
"dev": "base dev",
"lint": "base lint",
"prepare": "base prepare",
"prepublishOnly": "base prepublishOnly",
Expand All @@ -20,7 +23,7 @@
"dependencies": {},
"devDependencies": {
"@dword-design/base": "^6.0.0",
"@dword-design/base-config-component-library": "^1.0.0",
"@dword-design/base-config-directive": "^1.0.0",
"@dword-design/functions": "^2.2.4",
"@dword-design/puppeteer": "^1.0.0",
"fs-extra": "^9.0.0",
Expand All @@ -30,5 +33,5 @@
"publishConfig": {
"access": "public"
},
"baseConfig": "@dword-design/component-library"
"baseConfig": "@dword-design/directive"
}
Loading

0 comments on commit ac00253

Please sign in to comment.