Skip to content

Commit 36a70ef

Browse files
authored
Docs/add security section (#41)
* docs: readme updated with security section * fix: tsconfig.json and version action
1 parent 4f43704 commit 36a70ef

3 files changed

Lines changed: 14 additions & 1 deletion

File tree

.changeset/witty-stamps-draw.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@fetchkit/ffetch': patch
3+
---
4+
5+
docs: readme updated with security section

.github/workflows/version.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,18 @@ jobs:
2929
- name: Install dependencies
3030
run: npm ci
3131

32+
- name: Lint
33+
run: npm run lint
34+
35+
- name: Test
36+
run: npm run test:ci
37+
3238
- name: Create Version PR
3339
uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1
3440
with:
3541
version: npm run version
3642
commit: 'chore(release): version packages'
3743
title: 'chore(release): version packages'
44+
commitMode: github-api
3845
env:
3946
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"declaration": true,
1212
"outDir": "dist",
1313
"rootDir": "src",
14-
"types": ["vitest"]
14+
"types": ["vitest"],
15+
"ignoreDeprecations": "6.0"
1516
},
1617
"include": ["src/**/*"],
1718
"exclude": ["dist", "node_modules", "**/*.test.ts"]

0 commit comments

Comments
 (0)