Skip to content

Commit 7a1225a

Browse files
committed
build(deps): update package-lock.json and package.json
1 parent 8e945ea commit 7a1225a

File tree

4 files changed

+9253
-3399
lines changed

4 files changed

+9253
-3399
lines changed

.github/workflows/release.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Semantic Release
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
issues: write
14+
pull-requests: write
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
with:
19+
# Fetch all history for semantic-release to analyze
20+
fetch-depth: 0
21+
22+
- name: Setup Node.js
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: '18'
26+
27+
- name: Install dependencies
28+
run: npm ci
29+
30+
- name: Run semantic-release
31+
run: npx semantic-release
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
34+
# If publishing to npm, you would also need:
35+
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

cliff.toml

Whitespace-only changes.

0 commit comments

Comments
 (0)