Skip to content

Commit e2605ef

Browse files
authored
Create generate-lockfile.yml
1 parent fa602e5 commit e2605ef

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Generate package-lock.json
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
lockfile:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: 20
15+
16+
- run: npm install
17+
18+
- name: Commit lockfile
19+
uses: stefanzweifel/git-auto-commit-action@v5
20+
with:
21+
commit_message: "Add package-lock.json"

0 commit comments

Comments
 (0)