generated from pabio/template
-
Notifications
You must be signed in to change notification settings - Fork 19
67 lines (67 loc) · 2.13 KB
/
node.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Node CI
on:
push:
branches:
- master
jobs:
release:
name: Build, test, and release
runs-on: ubuntu-18.04
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 14
- name: Setup Licensed
uses: jonabc/[email protected]
with:
version: 2.x
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: npm ci
- name: Build TypeScript
run: npm run build
- name: Run tests
run: npm run test
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_NAME: "Koj Bot"
GIT_AUTHOR_EMAIL: "[email protected]"
GIT_COMMITTER_NAME: "Koj Bot"
GIT_COMMITTER_EMAIL: "[email protected]"
- name: Check dependency licenses
id: licensed
uses: jonabc/licensed-ci@v1
with:
config_file: .github/licensed.yml
github_token: ${{ secrets.GH_PAT }}
user_name: "KojBot"
user_email: "[email protected]"
commit_message: ":page_facing_up: Update dependency license file [skip ci]"
- name: Add PR comment
uses: actions/github-script@v3
if: always() && steps.licensed.outputs.pr_number
with:
github-token: ${{ secrets.GH_PAT }}
script: |
github.issues.createComment({
...context.repo,
issue_number: ${{ steps.licensed.outputs.pr_number }}
body: "I've checked the license of your new dependency and it looks good!"
})