File tree Expand file tree Collapse file tree 4 files changed +39
-78
lines changed
Expand file tree Collapse file tree 4 files changed +39
-78
lines changed Original file line number Diff line number Diff line change 1+ name : ' CI: UIRouter for AngularJS'
2+
3+ on : [push]
4+
5+ jobs :
6+ test :
7+ name : Run Unit Tests
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ - name : Install Dependencies
12+ run : yarn install --pure-lockfile
13+ - name : Run Tests
14+ run : yarn test
15+
16+ docs :
17+ name : Verify that docs can be generated
18+ runs-on : ubuntu-latest
19+ steps :
20+ - uses : actions/checkout@v2
21+ - name : Install Dependencies
22+ run : yarn install --pure-lockfile
23+ - name : Generate Docs
24+ run : yarn docs
25+
26+ test_downstream :
27+ name : Verify that downstream projects still work
28+ runs-on : ubuntu-latest
29+ steps :
30+ - uses : actions/checkout@v2
31+ - name : Prepare to Test Downstream Projects
32+ run : |
33+ npm config set scripts-prepend-node-path auto
34+ git config --global user.email uirouter@github.actions
35+ git config --global user.name uirouter_github_actions
36+ - name : Install Dependencies
37+ run : yarn install --pure-lockfile
38+ - name : Test Downstream Projects
39+ run : yarn test:downstream
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments