Skip to content

Commit

Permalink
Bump version (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenLorantfy authored Nov 22, 2022
1 parent 89ea7bc commit 9fae3c1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 12 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,28 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-cache-dependencies-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: npm install
run: |
node -v
npm -v
npm install
- name: Run Tests
run: npm run test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-cache-dependencies-${{ hashFiles('package-lock.json') }}
Expand All @@ -34,10 +37,10 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-cache-dependencies-${{ hashFiles('package-lock.json') }}
Expand Down
13 changes: 9 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redux-injectors",
"version": "2.0.0",
"version": "2.1.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 9fae3c1

Please sign in to comment.