Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
node-version: ^20

- name: Install Dependency
run: yarn install --no-lockfile
run: yarn install --frozen-lockfile

- name: Run Lint
run: yarn run lint
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
node-version: ^20

- name: Install Dependency
run: yarn install --no-lockfile
run: yarn install --frozen-lockfile

- name: Run Coverage
run: yarn run coverage
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install Dependency
run: yarn install --no-lockfile
run: yarn install --frozen-lockfile

- name: Run Unit test
run: yarn run test
Expand All @@ -119,7 +119,7 @@ jobs:
- name: Run semantic-release
if: github.repository == 'node-casbin/redis-watcher' && github.event_name == 'push'
run: |
yarn install --no-lockfile
yarn install --frozen-lockfile
yarn run build
yarn run release
env:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ build/Release
node_modules/
jspm_packages/

# Build output
lib/

# TypeScript v1 declaration files
typings/

Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.8",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/babel__core": "7.1.7",
"@types/babel__traverse": "7.0.8",
"@types/ioredis": "^4.14.3",
"@types/jest": "^24.0.11",
"@types/node": "^10.5.3",
Expand All @@ -38,6 +40,9 @@
"dependencies": {
"ioredis": "^4.11.1"
},
"resolutions": {
"@types/babel__traverse": "7.0.8"
},
"files": [
"lib",
"examples"
Expand Down
Loading