File tree Expand file tree Collapse file tree 2 files changed +37
-42
lines changed Expand file tree Collapse file tree 2 files changed +37
-42
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+ name : CI
5+
6+ on :
7+ push :
8+ branches : [ master ]
9+ pull_request :
10+ branches : [ master ]
11+
12+ jobs :
13+ build :
14+
15+ runs-on : ${{ matrix.os }}
16+
17+ strategy :
18+ matrix :
19+ node-version : [10.x, 12.x, 14.x]
20+ os : [ubuntu-latest]
21+
22+ steps :
23+ - uses : actions/checkout@v2
24+ - name : Use Node.js ${{ matrix.node-version }}
25+ uses : actions/setup-node@v1
26+ with :
27+ node-version : ${{ matrix.node-version }}
28+ - run : npm ci
29+ # test code
30+ - run : npm run standard
31+ - run : npm run validate
32+ - run : npm run nyc
33+ # Test global install of the package
34+ - run : npm pack .
35+ - run : npm install -g solid-server-*.tgz
36+ # Run the Solid test-suite
37+ - run : bash test/surface/run-solid-test-suite.sh
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments