File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ ## 🧰 Changes
2+
3+ Describe in detail what this PR is for.
4+
5+ ## 🧬 QA & Testing
6+
7+ Provide as much information as you can on how to test what you've done.
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ strategy :
9+ matrix :
10+ node-version : [12.x, 14.x, 16.x]
11+
12+ steps :
13+ - uses : actions/checkout@v2.4.0
14+
15+ - name : Use Node.js ${{ matrix.node-version }}
16+ uses : actions/setup-node@v2.5.1
17+ with :
18+ node-version : ${{ matrix.node-version }}
19+
20+ - name : Install npm@7
21+ run : npm install -g npm@7
22+
23+ - name : Install deps
24+ run : npm ci
25+
26+ - name : Build dist
27+ run : npm run build
28+
29+ - name : Run tests
30+ run : npm test
You can’t perform that action at this time.
0 commit comments