We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f36010 commit 9417acfCopy full SHA for 9417acf
.github/workflows/pull_request.yml
@@ -0,0 +1,28 @@
1
+name: Pull Request
2
+on:
3
+ pull_request
4
+jobs:
5
+ commit_check:
6
+ name: Conventional Commits Checkout
7
+ runs-on: ubuntu-18.04
8
+ steps:
9
+ uses: amannn/action-semantic-pull-request@v3.1.0
10
+ env:
11
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12
+
13
+ pull_request:
14
+ name: Pull Request
15
16
17
+ - name: Checkout
18
+ uses: actions/checkout@v1
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v1
21
+ with:
22
+ node-version: 12
23
+ - name: Install dependencies
24
+ run: yarn install --frozen-lockfile
25
+ - name: Typescript Build
26
+ run: yarn build
27
+ - name: Unit Tests
28
+ run: yarn test
0 commit comments