Skip to content

Commit

Permalink
fix: lock file maintenance (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Mar 22, 2021
1 parent e19127c commit 1612e03
Show file tree
Hide file tree
Showing 7 changed files with 228 additions and 213 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "@dword-design/eslint-config"
}
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
steps:
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: rokroskar/workflow-run-cleanup-action@v0.3.0
uses: rokroskar/workflow-run-cleanup-action@v0.3.2
release:
needs: test
runs-on: ubuntu-latest
Expand Down Expand Up @@ -37,13 +37,18 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
lfs: true
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: yarn --frozen-lockfile
- run: yarn test
- run: yarn check-unknown-files
- if: failure()
uses: actions/upload-artifact@v2
with:
path: "**/__image_snapshots__/__diff_output__"
- run: yarn checkUnknownFiles
- if: matrix.os == 'ubuntu-latest' && matrix.node == 12
uses: codecov/codecov-action@v1
with:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_Store
/.env.json
/.eslintrc.json
/.nyc_output
/.test.env.json
/coverage
Expand Down
7 changes: 4 additions & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
image:
file: .gitpod.Dockerfile
tasks:
- init: git lfs pull
- init: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >>~/.npmrc
- init: yarn --frozen-lockfile
- before: sudo docker-up
name: Docker Deamon
- init: git lfs pull && echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN"
>>~/.npmrc && yarn --frozen-lockfile
vscode:
extensions:
- karlito40.fix-irregular-whitespace@0.0.3:8jjyZYuYF6yW6nwsAiulrg==
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ To run the files, you need to use Babel. You can either compile them using [@bab
The library is currently in development, so for more insights into the available functions check out the source code.

<!-- LICENSE/ -->
## Contributing
## Contribute

Are you missing something or want to contribute? Feel free to file an [issue](https://github.com/dword-design/fp.macro/issues) or [pull request](https://github.com/dword-design/fp.macro/pulls)! ⚙️

## Support Me
## Support

Hey, I am Sebastian Landwehr, a freelance web developer, and I love developing web apps and open source packages. If you want to support me so that I can keep packages up to date and build more helpful tools, you can donate here:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"dist"
],
"scripts": {
"check-unknown-files": "base check-unknown-files",
"checkUnknownFiles": "base checkUnknownFiles",
"commit": "base commit",
"dev": "base dev",
"lint": "base lint",
Expand Down
415 changes: 211 additions & 204 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 1612e03

Please sign in to comment.