File tree Expand file tree Collapse file tree 3 files changed +41
-24
lines changed Expand file tree Collapse file tree 3 files changed +41
-24
lines changed Original file line number Diff line number Diff line change 1+ # These are supported funding model platforms
2+
3+ github : [nodkz]
4+ patreon : # Replace with a single Patreon username
5+ open_collective : graphql-compose
6+ ko_fi : # Replace with a single Ko-fi username
7+ tidelift : # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+ community_bridge : # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+ liberapay : # Replace with a single Liberapay username
10+ issuehunt : # Replace with a single IssueHunt username
11+ otechie : # Replace with a single Otechie username
12+ custom : # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
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 : Node.js CI
5+
6+ on : [push, pull_request]
7+
8+ jobs :
9+ tests :
10+ runs-on : ubuntu-latest
11+ strategy :
12+ matrix :
13+ node-version : [12.x]
14+ steps :
15+ - uses : actions/checkout@v2
16+ - name : Use Node.js ${{ matrix.node-version }}
17+ uses : actions/setup-node@v1
18+ with :
19+ node-version : ${{ matrix.node-version }}
20+ - name : Install node_modules
21+ run : yarn
22+ - name : Test & lint
23+ run : yarn test
24+ env :
25+ CI : true
26+ - name : Send codecov.io stats
27+ if : matrix.node-version == '12.x'
28+ run : bash <(curl -s https://codecov.io/bash) || echo ''
29+
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments