Skip to content

Commit 3dd86db

Browse files
Create test-automated-pr.yml
1 parent a70fa5b commit 3dd86db

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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-

0 commit comments

Comments
 (0)