Skip to content

Commit

Permalink
fix: upgrade dependencies (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed May 24, 2022
1 parent 05defe6 commit d79c71d
Show file tree
Hide file tree
Showing 8 changed files with 2,711 additions and 2,341 deletions.
5 changes: 2 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"plugins": ["jest", "@typescript-eslint"],
"plugins": ["@typescript-eslint"],
"extends": ["plugin:github/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
Expand Down Expand Up @@ -46,7 +46,6 @@
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
"es6": true
}
}
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["12", "14"]

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
node-version: 14.18.1

- name: Install dependencies
run: yarn install
run: yarn install --ignore-engines

- name: Check format and lint
run: yarn run format-check && yarn lint
Expand Down Expand Up @@ -62,14 +60,14 @@ jobs:
body: output
})
- name: Update dist in the repository
if: github.event_name != 'pull_request' && matrix.node-version == 12
if: github.event_name != 'pull_request'
uses: stefanzweifel/git-auto-commit-action@v4.8.0
with:
commit_message: "chore(ci): Updating dist"
file_pattern: dist/*

- name: Update readme in the repository
if: github.event_name != 'pull_request' && matrix.node-version == 12
if: github.event_name != 'pull_request'
uses: stefanzweifel/git-auto-commit-action@v4.8.0
with:
commit_message: "chore(ci): Updating README"
Expand All @@ -79,7 +77,7 @@ jobs:
if:
contains('
refs/heads/main
', github.ref) && matrix.node-version == 12
', github.ref)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn release
Loading

0 comments on commit d79c71d

Please sign in to comment.