UNPKG

react-crud-table

Version:

A table that includes all the CRUD operations.

28 lines (22 loc) 448 B
# This workflow run apps tests name: Tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x] steps: - uses: actions/checkout@v2 - name: Tests uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm install - run: npm run lint - run: npm test