File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Test Workflow
2+ on : push
3+
4+ jobs :
5+ test :
6+ runs-on : ubuntu-latest
7+ steps :
8+ - uses : actions/checkout@v3
9+ - uses : amannn/action-semantic-pull-request@v5
10+ with :
11+ types : feat,fix,chore
12+ - uses : fkirc/skip-duplicate-actions@v5
13+ with :
14+ do_not_skip : ' ["release"]'
15+ - uses : chetan/git-restore-mtime-action@v1
16+ with :
17+ pattern : ' **/*'
18+
19+ lint :
20+ runs-on : ubuntu-latest
21+ steps :
22+ - uses : actions/checkout@v1
23+ - uses : github/super-linter@v3
24+ env :
25+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26+ DISABLE_ERRORS : true
27+ - uses : tespkg/actions-cache/restore@v1
28+ with :
29+ path : ~/.npm
30+ key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
31+ restore-keys : |
32+ ${{ runner.os }}-node-
You can’t perform that action at this time.
0 commit comments