Update domain #111
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test BFast Cli | |
| on: | |
| push: | |
| branches: | |
| - master | |
| # - joshua | |
| jobs: | |
| build-on-ubuntu: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [10.x] | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: npm install, build, and test | |
| run: | | |
| npm install | |
| npm test | |
| env: | |
| CI: true | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: test create working space | |
| run: | | |
| npm install -g ./ | |
| bfast functions create demoWorkSpace | |
| env: | |
| CI: true | |
| # build-on-window: | |
| # runs-on: windows-latest | |
| # strategy: | |
| # matrix: | |
| # node-version: [10.x] | |
| # steps: | |
| # - uses: actions/checkout@v1 | |
| # - name: Use Node.js ${{ matrix.node-version }} | |
| # uses: actions/setup-node@v1 | |
| # with: | |
| # node-version: ${{ matrix.node-version }} | |
| # - name: npm install, build and test | |
| # run: | | |
| # npm install | |
| # npm test | |
| # env: | |
| # CI: true | |
| # - name: test create working space | |
| # run: | | |
| # npm install -g ./ | |
| # bfast functions create demoWorkSpace | |
| # env: | |
| # CI: true | |
| # NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |