Skip to content

Commit

Permalink
feature: scan (#2)
Browse files Browse the repository at this point in the history
* feature: scan

* fix readme

* improve ts config

* add semantic-release
  • Loading branch information
icedrone authored Dec 4, 2023
1 parent 7429db9 commit 9dbef95
Show file tree
Hide file tree
Showing 11 changed files with 6,716 additions and 673 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/run-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Release
on:
push:
branches:
- master
permissions:
contents: read
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install dependencies
run: npm install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Project Build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release


3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Redis store for node cache manager (Ts)
# Redis store for node cache manager (TypeScript)
[![npm version](https://badge.fury.io/js/@myrror-security%2Fcache-manager-redis-store.svg)](https://badge.fury.io/js/cache-manager-redis-store)
![GitHub issues](https://img.shields.io/github/issues/blindspot-security/node-cache-manager-redis-store)

Expand Down Expand Up @@ -34,7 +34,6 @@ TODO:
* [ ] Add examples
* [ ] Add CI/CD
* [ ] Add code coverage
* [ ] Fix badges
* [ ] Add more package managers

License
Expand Down
Loading

0 comments on commit 9dbef95

Please sign in to comment.