| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| feathers-chat-ts: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18.x] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install and run tests | |
| working-directory: ./feathers-chat-ts | |
| run: | | |
| npm install | |
| npm test |
| Back | FazBrowse Home | New Git URL |