-
Notifications
You must be signed in to change notification settings - Fork 1
119 lines (99 loc) · 3 KB
/
v3-lint-build-test.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Lint/Build/Test
on:
workflow_call:
inputs:
NODE_VERSION:
required: false
type: string
default: 12
PYTHON_VERSION:
required: false
type: string
SKIP_TEST:
required: false
type: boolean
USE_GANACHE:
required: false
type: boolean
# Ensure only a single instance of this workflow is running for a given PR.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Use specific Python version
if: ${{ inputs.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.PYTHON_VERSION }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ inputs.NODE_VERSION }}
registry-url: https://registry.npmjs.org
cache: 'npm'
- name: Install
run: |
git config --global url."https://github.com/".insteadOf ssh://[email protected]/
git config --global url."https://".insteadOf git://
npm ci
- name: Lint
run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Use specific Python version
if: ${{ inputs.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.PYTHON_VERSION }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ inputs.NODE_VERSION }}
registry-url: https://registry.npmjs.org
cache: 'npm'
- name: Install
run: |
git config --global url."https://github.com/".insteadOf ssh://[email protected]/
git config --global url."https://".insteadOf git://
npm ci
- name: Build
run: npm run build
test:
if: ${{ !inputs.SKIP_TEST }}
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Use specific Python version
if: ${{ inputs.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.PYTHON_VERSION }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ inputs.NODE_VERSION }}
registry-url: https://registry.npmjs.org
cache: 'npm'
- name: Install
run: |
git config --global url."https://github.com/".insteadOf ssh://[email protected]/
git config --global url."https://".insteadOf git://
npm ci
- name: Build
run: npm run build
- name: Use Ganache
if: ${{ inputs.USE_GANACHE }}
run: |
npm i -g ganache-cli@6
ganache-cli -d -k=petersburg -i 1001 &
- name: Test
run: npm test