Skip to content

Commit c1eea05

Browse files
Create find-deadcode.yml
1 parent f88c54e commit c1eea05

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Find deadcode
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
find_deadcode:
8+
runs-on: ubuntu-latest
9+
timeout-minutes: 2
10+
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
15+
- name: Setup Node
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: '22.x'
19+
cache: yarn
20+
21+
- name: Install dependencies
22+
run: yarn
23+
24+
- name: Find deadcode
25+
run: yarn find-deadcode

0 commit comments

Comments
 (0)