Skip to content

Commit

Permalink
Merge pull request #9 from dword-design/{{{branchPrefix}}}{{{managerB…
Browse files Browse the repository at this point in the history
…ranchPrefix}}}{{{branchTopic}}}

chore(deps): lock file maintenance
  • Loading branch information
dword-design committed Aug 26, 2020
2 parents a53c625 + 6db4b64 commit c6c3fac
Show file tree
Hide file tree
Showing 6 changed files with 1,256 additions and 982 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:
- "**"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
.DS_Store
/.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
}
}
}
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,22 @@
[![Dependency status](https://img.shields.io/david/dword-design/depcheck-parser-sass)](https://david-dm.org/dword-design/depcheck-parser-sass)
![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen)

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/dword-design/depcheck-parser-sass)
<a href="https://www.buymeacoffee.com/dword">
<img
src="https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg"
alt="Buy Me a Coffee"
height="32"
>
</a><a href="https://gitpod.io/#https://github.com/dword-design/depcheck-parser-sass">
<img src="https://gitpod.io/button/open-in-gitpod.svg" alt="Open in Gitpod">
</a>
<a href="https://paypal.me/SebastianLandwehr">
<img
src="https://upload.wikimedia.org/wikipedia/commons/b/b5/PayPal.svg"
alt="PayPal"
height="30"
>
</a>
<!-- /BADGES -->
<!-- DESCRIPTION/ -->
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"dist"
],
"scripts": {
"clean": "base clean",
"commit": "base commit",
"dev": "base dev",
"lint": "base lint",
Expand Down
Loading

0 comments on commit c6c3fac

Please sign in to comment.